Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Florentin Dubois <florentin.dubois@clever-cloud.com>
  • Loading branch information
FlorentinDUBOIS committed Dec 19, 2024
1 parent b71303f commit ef7c063
Showing 1 changed file with 23 additions and 26 deletions.
49 changes: 23 additions & 26 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,53 +17,50 @@ keywords = ["pulsar", "api", "client"]

[dependencies]
async-channel = "^2.3.1"
async-trait = "^0.1.82"
async-trait = "^0.1.83"
async-std = { version = "^1.13.0", features = ["attributes", "unstable"], optional = true }
async-native-tls = { version = "^0.5.0", optional = true }
asynchronous-codec = { version = "^0.7.0", optional = true }
bytes = "^1.7.2"
bit-vec = "^0.8.0"
chrono = { version = "^0.4.38", default-features = false, features = ["clock", "std"] }
bytes = "^1.9.0"
chrono = { version = "^0.4.39", default-features = false, features = ["clock", "std"] }
crc = "^3.2.1"
data-url = { version = "^0.3.1", optional = true }
flate2 = { version = "^1.0.33", optional = true }
futures = "^0.3.30"
futures-io = "^0.3.30"
futures-timer = "^3.0.3"
flate2 = { version = "^1.0.35", optional = true }
futures = "^0.3.31"
futures-rustls = { version = "^0.26.0", optional = true } # replacement of crate async-rustls (also a fork of tokio-rustls)
log = "^0.4.22"
lz4 = { version = "^1.27.0", optional = true }
lz4 = { version = "^1.28.0", optional = true }
native-tls = { version = "^0.2.12", optional = true }
nom = { version = "^7.1.3", default-features = false, features = ["alloc"] }
openidconnect = { version = "^3.5.0", optional = true }
oauth2 = { version = "^4.4.2", optional = true }
pem = "^3.0.4"
prost = "^0.13.2"
prost-derive = "^0.13.2"
prost = "^0.13.4"
prost-derive = "^0.13.4"
rand = "^0.8.5"
regex = "^1.10.6"
rustls = { version = "^0.23.13", optional = true }
regex = "^1.11.1"
rustls = { version = "^0.23.20", optional = true }
snap = { version = "^1.1.1", optional = true }
serde = { version = "^1.0.210", features = ["derive"], optional = true }
serde_json = { version = "^1.0.128", optional = true }
tokio = { version = "^1.40.0", features = ["rt", "net", "time"], optional = true }
tokio-util = { version = "^0.7.12", features = ["codec"], optional = true }
tokio-rustls = { version = "^0.26.0", optional = true }
serde = { version = "^1.0.216", features = ["derive"], optional = true }
serde_json = { version = "^1.0.133", optional = true }
tokio = { version = "^1.42.0", features = ["rt", "net", "time"], optional = true }
tokio-util = { version = "^0.7.13", features = ["codec"], optional = true }
tokio-rustls = { version = "^0.26.1", optional = true }
tokio-native-tls = { version = "^0.3.1", optional = true }
tracing = { version = "^0.1.40", optional = true }
url = "^2.5.2"
uuid = { version = "^1.10.0", features = ["v4", "fast-rng"] }
webpki-roots = { version = "^0.26.6", optional = true }
tracing = { version = "^0.1.41", optional = true }
url = "^2.5.4"
uuid = { version = "^1.11.0", features = ["v4", "fast-rng"] }
webpki-roots = { version = "^0.26.7", optional = true }
zstd = { version = "^0.13.2", optional = true }

[dev-dependencies]
env_logger = "^0.11.5"
serde = { version = "^1.0.204", features = ["derive"] }
serde_json = "^1.0.121"
tokio = { version = "^1.39.2", features = ["macros", "rt-multi-thread"] }
serde = { version = "^1.0.216", features = ["derive"] }
serde_json = "^1.0.133"
tokio = { version = "^1.42.0", features = ["macros", "rt-multi-thread"] }

[build-dependencies]
prost-build = "^0.13.1"
prost-build = "^0.13.4"
protobuf-src = { version = "^2.1.0", optional = true }

[features]
Expand Down

0 comments on commit ef7c063

Please sign in to comment.