Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
foxzool committed Aug 22, 2024
1 parent 2edd22c commit d13662a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- reqwest default use rust-tls
- reqwest default use rust-tls
- Update dependencies: quick_cache, prost
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ websocket = ["tokio-tungstenite", "prost", "lark-websocket-protobuf"]
members = ["crates/*"]

[dependencies]
lark-websocket-protobuf = { version = "0.1.0", optional = true }
lark-websocket-protobuf = { path = "crates/protobuf", version = "0.1.1", optional = true }

anyhow = "1.0.86"
async-recursion = "1.1.1"
Expand All @@ -33,8 +33,8 @@ hmac = "0.12.1"
lazy_static = "1.4.0"
log = "0.4.21"
kanal = "0.1.0-pre8"
prost = { version = "0.12.6", optional = true }
quick_cache = { version = "0.5.1", features = [] }
prost = { version = "0.13.1", optional = true }
quick_cache = { version = "0.6.3", features = [] }
rand = "0.9.0-alpha.1"
reqwest = { version = "0.12.7", default-features = false, features = ["json", "multipart", "rustls-tls"] }
simd-adler32 = "0.3.7"
Expand All @@ -48,7 +48,7 @@ thiserror = "1.0.61"
tokio = { version = "1.38", features = ["rt", "rt-multi-thread", "macros"] }
tokio-stream = "0.1.15"
url = { version = "2.5.0", features = ["serde"] }
tokio-tungstenite = { version = "0.23", features = ["tokio-rustls", "rustls"], optional = true }
tokio-tungstenite = { version = "0.23", features = ["rustls-tls-native-roots"], optional = true }
futures-channel = "0.3.30"


Expand Down
4 changes: 2 additions & 2 deletions crates/protobuf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lark-websocket-protobuf"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
authors = ["ZoOL <[email protected]>"]
description = "Lark/Feishu websocket client protobuf definitions."
Expand All @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0"

[dependencies]
bytes = "1.6.0"
prost = "0.12.6"
prost = "0.13.1"


[build-dependencies]
Expand Down

0 comments on commit d13662a

Please sign in to comment.