Skip to content

v1.0.1

Choose a tag to compare

@Jeadie Jeadie released this 24 Oct 10:06
· 42 commits to trunk since this release
da5e699

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:

  1. Sign up for a free API key at Spice.ai
  2. Add spice-rs as a dependency in your Cargo.toml file.
  3. 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

Full Changelog: v1.0.0...v1.0.1