Skip to content

Commit

Permalink
rust(build): rc.2 prep + new examples
Browse files Browse the repository at this point in the history
  • Loading branch information
solidiquis committed Nov 12, 2024
1 parent 9bebbdf commit b76e4e1
Show file tree
Hide file tree
Showing 24 changed files with 469 additions and 3,697 deletions.
214 changes: 211 additions & 3 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 16 additions & 15 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sift_rs"
version = "0.1.0-rc.1"
version = "0.1.0-rc.2"
edition = "2021"
authors = ["Sift Software Engineers <[email protected]>"]
description = """
Expand All @@ -9,23 +9,24 @@ Rust client library for the Sift API
categories = ["aerospace", "science::robotics"]
homepage = "https://github.com/sift-stack/sift/tree/main/rust"
repository = "https://github.com/sift-stack/sift/tree/main/rust"
keywords = ["sift", "siftstack", "sift-stack", "sift_rs"]
keywords = ["sift", "siftstack", "sift-stack", "sift_rs", "telemetry", "hardware"]
exclude = ["examples/*"]
readme = "README.md"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
async-trait = "0.1.79"
pbjson = "0.6.0"
pbjson-types = "0.6.0"
prost = "0.12.4"
prost-types = "0.12.4"
serde = { version = "1.0.203" }
thiserror = "2.0.0"
tonic = { version = "0.11.0", features = ["tls", "tls-roots", "tls-webpki-roots"] }
tower = "0.4.13"
async-trait = "^0.1"
pbjson = "^0.6"
pbjson-types = "^0.6"
prost = "^0.12"
prost-types = "^0.12"
serde = { version = "^1.0" }
thiserror = "^2.0"
tonic = { version = "^0.11", features = ["tls", "tls-roots", "tls-webpki-roots"] }
tower = "^0.4"

[features]
default = []
[dev-dependencies]
chrono = "0.4.38"
rand = "0.8.5"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.16"
Loading

0 comments on commit b76e4e1

Please sign in to comment.