Skip to content

Commit 083c2a0

Browse files
authored
build: use more specific dependency version format (#7)
1 parent eef78c4 commit 083c2a0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pub-sub-client"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55
rust-version = "1.58"
66

@@ -13,19 +13,19 @@ repository = "https://github.com/hseeberger/pub-sub-client"
1313
documentation = "https://github.com/hseeberger/pub-sub-client"
1414

1515
[dependencies]
16-
base64 = "0.*"
17-
goauth = "0.*"
18-
reqwest = { version = "0.*", features = [ "json" ] }
16+
base64 = "0.13"
17+
goauth = "0.11"
18+
reqwest = { version = "0.11", features = [ "json" ] }
1919
serde = { version = "1.0", features = [ "derive" ] }
2020
serde_json = "1.0"
21-
smpl_jwt = "0.*"
21+
smpl_jwt = "0.6"
2222
thiserror = "1.0"
23-
time = { version = "0.*", features = [ "serde-well-known" ] }
24-
tracing = "0.*"
25-
tracing-subscriber = { version = "0.*", features = [ "env-filter", "fmt", "json", "tracing-log" ] }
23+
time = { version = "0.3", features = [ "serde-well-known" ] }
24+
tracing = "0.1"
25+
tracing-subscriber = { version = "0.3", features = [ "env-filter", "fmt", "json", "tracing-log" ] }
2626

2727
[dev-dependencies]
2828
anyhow = "1.0"
2929
# TODO switch to the standard release once Pub/Sub has been included; until then use "dev"
3030
testcontainers = { git = "https://github.com/testcontainers/testcontainers-rs", branch = "dev" }
31-
tokio = { version = "1", features = [ "full" ] }
31+
tokio = { version = "1.15", features = [ "full" ] }

0 commit comments

Comments
 (0)