From de4864c44f71e53460535634640b274e764a7bb2 Mon Sep 17 00:00:00 2001 From: Cappy Ishihara Date: Sun, 1 Dec 2024 18:23:34 +0700 Subject: [PATCH] make dependencies not exact --- skystreamer/Cargo.toml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/skystreamer/Cargo.toml b/skystreamer/Cargo.toml index f41fd98..bb499f6 100644 --- a/skystreamer/Cargo.toml +++ b/skystreamer/Cargo.toml @@ -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"