Skip to content

Commit

Permalink
make dependencies not exact
Browse files Browse the repository at this point in the history
  • Loading branch information
korewaChino committed Dec 1, 2024
1 parent 536555d commit de4864c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions skystreamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ categories = [
keywords = ["bluesky", "firehose", "atproto", "bluesky-social"]

[dependencies]
async-trait = "0.1.83"
atrium-api = { version = "0.24.8", features = ["tokio"] }
chrono = { version = "0.4.38", features = ["serde"] }
cid = "0.11.1"
async-trait = "0.1"
atrium-api = { version = "0.24", features = ["tokio"] }
chrono = { version = "0.4", features = ["serde"] }
cid = "0.11"
cid_old = { package = "cid", version = "0.10.1" }
futures = "0.3.31"
ipld-core = "0.4.1"
rs-car = "0.4.1"
serde = { version = "1.0.215", features = ["derive"] }
serde_ipld_dagcbor = "0.6.1"
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = ["full"] }
tokio-stream = { version = "0.1.16", features = ["full"] }
tokio-tungstenite = { version = "0.24.0", features = ["native-tls", "url"] }
tracing = { version = "0.1.41", features = ["async-await", "log"] }
trait-variant = "0.1.2"
clap = { version = "4.5.21", features = ["derive", "env"] }
thiserror = "2.0.3"
futures = "0.3"
ipld-core = "0.4"
rs-car = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_ipld_dagcbor = "0.6"
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
tokio-stream = { version = "0.1", features = ["full"] }
tokio-tungstenite = { version = "0.24", features = ["native-tls", "url"] }
tracing = { version = "0.1", features = ["async-await", "log"] }
trait-variant = "0.1"
clap = { version = "4.5", features = ["derive", "env"] }
thiserror = "2.0"

0 comments on commit de4864c

Please sign in to comment.