Skip to content

Commit

Permalink
Tokio 1.0 release bumps! (cloudevents#113)
Browse files Browse the repository at this point in the history
Signed-off-by: Francesco Guardiani <[email protected]>
  • Loading branch information
slinkydeveloper authored Feb 8, 2021
1 parent 364ad7b commit da40d3d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions cloudevents-sdk-rdkafka/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ categories = ["web-programming", "encoding"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bytes = "^0.5"
bytes = "^1.0"
cloudevents-sdk = { version = "0.3.0", path = ".." }
lazy_static = "1.4.0"
rdkafka = { version = "^0.24", features = ["cmake-build"] }
rdkafka = { version = "^0.25", features = ["cmake-build"] }

[dev-dependencies]
url = { version = "^2.1" }
Expand Down
6 changes: 3 additions & 3 deletions cloudevents-sdk-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ categories = ["web-programming", "encoding", "web-programming::http-client"]
async-trait = "^0.1.33"
cloudevents-sdk = { version = "0.3.0", path = ".." }
lazy_static = "1.4.0"
bytes = "^0.5"
bytes = "^1.0"

[dependencies.reqwest]
version = "0.10.4"
version = "^0.11"
default-features = false
features = ["rustls-tls"]

[dev-dependencies]
mockito = "0.25.1"
tokio = { version = "^0.2", features = ["full"] }
tokio = { version = "^1.0", features = ["full"] }
url = { version = "^2.1" }
serde_json = "^1.0"
chrono = { version = "^0.4", features = ["serde"] }
Expand Down
8 changes: 4 additions & 4 deletions cloudevents-sdk-warp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ license-file = "../LICENSE"
[dependencies]
cloudevents-sdk = { path = ".." }
lazy_static = "1.4.0"
bytes = "^0.5"
warp = "0.2"
bytes = "^1.0"
warp = "^0.3"
http = "0.2"
hyper = "0.13"
hyper = "^0.14"

[dev-dependencies]
tokio = { version = "^0.2", features = ["full"] }
tokio = { version = "^1.0", features = ["full"] }
url = { version = "^2.1" }
serde_json = "^1.0"
chrono = { version = "^0.4", features = ["serde"] }
Expand Down
6 changes: 3 additions & 3 deletions example-projects/rdkafka-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ async-trait = "^0.1.33"
cloudevents-sdk = { path = "../.." }
cloudevents-sdk-rdkafka = { path = "../../cloudevents-sdk-rdkafka" }
lazy_static = "1.4.0"
bytes = "^0.5"
bytes = "^1.0"
url = { version = "^2.1", features = ["serde"] }
serde_json = "^1.0"
futures = "^0.3"
tokio = { version = "^0.2", features = ["full"] }
tokio = { version = "^1.0", features = ["full"] }
clap = "2.33.1"
rdkafka = { version = "^0.24", features = ["cmake-build"] }
rdkafka = { version = "^0.25", features = ["cmake-build"] }

[workspace]
2 changes: 1 addition & 1 deletion example-projects/reqwest-wasm-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
reqwest = "0.10.4"
reqwest = "^0.11"
cloudevents-sdk = { path = "../.." }
cloudevents-sdk-reqwest = { path = "../../cloudevents-sdk-reqwest" }
url = { version = "^2.1" }
Expand Down
4 changes: 2 additions & 2 deletions example-projects/warp-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ license-file = "../LICENSE"
[dependencies]
cloudevents-sdk = { path = "../.." }
cloudevents-sdk-warp = { path = "../../cloudevents-sdk-warp"}
warp = "0.2"
tokio = { version = "^0.2", features = ["full"] }
warp = "^0.3"
tokio = { version = "^1.0", features = ["full"] }

[workspace]

0 comments on commit da40d3d

Please sign in to comment.