v1.0.1
Announcing spice-rs v1.0.1! 🎉
Spice.ai is now generally available! Read the announcement blog post to see how Spice helps developers to build high-performance, highly-available, data and AI-driven applications.
spice-rs is the easiest way to query data in Rust from Spice.ai over a high-performance Apache Arrow connection.
Get started in 3 steps:
- Sign up for a free API key at Spice.ai
- Add
spice-rsas a dependency in yourCargo.tomlfile. - Import
spice-rs, create a client and start querying Spice's built-in live-updating web3 data:
use spice_rs::new_spice_client;
let client = new_spice_client("API_KEY".to_string());
let data = client.query("SELECT * FROM eth.recent_blocks LIMIT 10;".to_string()).await;Explore over 100+ built-in, real-time web3 datasets available in Spice.ai!
Have questions or feedback? Contact us
What's Changed
- add README fix up prices by @Jeadie in #4
- Update README.md by @Jeadie in #5
- Change new_spice_client return type by @Sevenannn in #6
Full Changelog: v1.0.0...v1.0.1