mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-23 06:51:01 +01:00
Upgrade the dependencies
This commit is contained in:
parent
a13482fc49
commit
64331f1df1
1 changed files with 14 additions and 14 deletions
28
Cargo.toml
28
Cargo.toml
|
@ -29,28 +29,28 @@ cbor-serializer = ["serde_cbor"]
|
|||
bincode-serializer = ["bincode"]
|
||||
|
||||
[dependencies]
|
||||
serde_json = "1.0.44"
|
||||
serde = { version = "1.0.101", features = ["derive"] }
|
||||
serde_json = "1.0.56"
|
||||
serde = { version = "1.0.114", features = ["derive"] }
|
||||
|
||||
tokio = { version = "0.2.11", features = ["full"] }
|
||||
tokio-util = { version = "0.3.0", features = ["full"] }
|
||||
tokio = { version = "0.2.21", features = ["full"] }
|
||||
tokio-util = { version = "0.3.1", features = ["full"] }
|
||||
|
||||
reqwest = { version = "0.10", features = ["json", "stream"] }
|
||||
reqwest = { version = "0.10.6", features = ["json", "stream"] }
|
||||
log = "0.4.8"
|
||||
lockfree = "0.5.1"
|
||||
bytes = "0.5.3"
|
||||
bytes = "0.5.5"
|
||||
mime = "0.3.16"
|
||||
|
||||
derive_more = "0.99.2"
|
||||
thiserror = "1.0.9"
|
||||
async-trait = "0.1.22"
|
||||
futures = "0.3.1"
|
||||
pin-project = "0.4.6"
|
||||
serde_with_macros = "1.0.1"
|
||||
derive_more = "0.99.9"
|
||||
thiserror = "1.0.20"
|
||||
async-trait = "0.1.36"
|
||||
futures = "0.3.5"
|
||||
pin-project = "0.4.22"
|
||||
serde_with_macros = "1.1.0"
|
||||
|
||||
redis = { version = "0.15.1", optional = true }
|
||||
redis = { version = "0.16.0", optional = true }
|
||||
serde_cbor = { version = "0.11.1", optional = true }
|
||||
bincode = { version = "1.2.1", optional = true }
|
||||
bincode = { version = "1.3.1", optional = true }
|
||||
|
||||
#teloxide-macros = "0.3.1"
|
||||
teloxide-macros = { git = "http://github.com/teloxide/teloxide-macros", branch = "dev" }
|
||||
|
|
Loading…
Reference in a new issue