Skip to content

Commit da40d3d

Browse files
Tokio 1.0 release bumps! (cloudevents#113)
Signed-off-by: Francesco Guardiani <[email protected]>
1 parent 364ad7b commit da40d3d

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

cloudevents-sdk-rdkafka/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ categories = ["web-programming", "encoding"]
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
bytes = "^0.5"
16+
bytes = "^1.0"
1717
cloudevents-sdk = { version = "0.3.0", path = ".." }
1818
lazy_static = "1.4.0"
19-
rdkafka = { version = "^0.24", features = ["cmake-build"] }
19+
rdkafka = { version = "^0.25", features = ["cmake-build"] }
2020

2121
[dev-dependencies]
2222
url = { version = "^2.1" }

cloudevents-sdk-reqwest/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ categories = ["web-programming", "encoding", "web-programming::http-client"]
1616
async-trait = "^0.1.33"
1717
cloudevents-sdk = { version = "0.3.0", path = ".." }
1818
lazy_static = "1.4.0"
19-
bytes = "^0.5"
19+
bytes = "^1.0"
2020

2121
[dependencies.reqwest]
22-
version = "0.10.4"
22+
version = "^0.11"
2323
default-features = false
2424
features = ["rustls-tls"]
2525

2626
[dev-dependencies]
2727
mockito = "0.25.1"
28-
tokio = { version = "^0.2", features = ["full"] }
28+
tokio = { version = "^1.0", features = ["full"] }
2929
url = { version = "^2.1" }
3030
serde_json = "^1.0"
3131
chrono = { version = "^0.4", features = ["serde"] }

cloudevents-sdk-warp/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ license-file = "../LICENSE"
99
[dependencies]
1010
cloudevents-sdk = { path = ".." }
1111
lazy_static = "1.4.0"
12-
bytes = "^0.5"
13-
warp = "0.2"
12+
bytes = "^1.0"
13+
warp = "^0.3"
1414
http = "0.2"
15-
hyper = "0.13"
15+
hyper = "^0.14"
1616

1717
[dev-dependencies]
18-
tokio = { version = "^0.2", features = ["full"] }
18+
tokio = { version = "^1.0", features = ["full"] }
1919
url = { version = "^2.1" }
2020
serde_json = "^1.0"
2121
chrono = { version = "^0.4", features = ["serde"] }

example-projects/rdkafka-example/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ async-trait = "^0.1.33"
1111
cloudevents-sdk = { path = "../.." }
1212
cloudevents-sdk-rdkafka = { path = "../../cloudevents-sdk-rdkafka" }
1313
lazy_static = "1.4.0"
14-
bytes = "^0.5"
14+
bytes = "^1.0"
1515
url = { version = "^2.1", features = ["serde"] }
1616
serde_json = "^1.0"
1717
futures = "^0.3"
18-
tokio = { version = "^0.2", features = ["full"] }
18+
tokio = { version = "^1.0", features = ["full"] }
1919
clap = "2.33.1"
20-
rdkafka = { version = "^0.24", features = ["cmake-build"] }
20+
rdkafka = { version = "^0.25", features = ["cmake-build"] }
2121

2222
[workspace]

example-projects/reqwest-wasm-example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition = "2018"
1010
crate-type = ["cdylib"]
1111

1212
[dependencies]
13-
reqwest = "0.10.4"
13+
reqwest = "^0.11"
1414
cloudevents-sdk = { path = "../.." }
1515
cloudevents-sdk-reqwest = { path = "../../cloudevents-sdk-reqwest" }
1616
url = { version = "^2.1" }

example-projects/warp-example/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ license-file = "../LICENSE"
99
[dependencies]
1010
cloudevents-sdk = { path = "../.." }
1111
cloudevents-sdk-warp = { path = "../../cloudevents-sdk-warp"}
12-
warp = "0.2"
13-
tokio = { version = "^0.2", features = ["full"] }
12+
warp = "^0.3"
13+
tokio = { version = "^1.0", features = ["full"] }
1414

1515
[workspace]
1616

0 commit comments

Comments
 (0)