From 7b6b93b59b4fcb505c2e480c2d9878c5db14ec2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Sun, 15 Sep 2024 03:33:25 +0200 Subject: [PATCH] Remove superfluous "^" from version numbers --- examples/current-time/Cargo.toml | 2 +- tzdb/Cargo.toml | 6 +++--- tzdb_data/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/current-time/Cargo.toml b/examples/current-time/Cargo.toml index cf6667d..a2aca6c 100644 --- a/examples/current-time/Cargo.toml +++ b/examples/current-time/Cargo.toml @@ -8,4 +8,4 @@ license = "MIT OR Apache-2.0" publish = false [dependencies] -tzdb = { path = "../../tzdb" } +tzdb = { path = "../../tzdb", version = "0.7.0-pre.0" } diff --git a/tzdb/Cargo.toml b/tzdb/Cargo.toml index ba6d5d0..63203f9 100644 --- a/tzdb/Cargo.toml +++ b/tzdb/Cargo.toml @@ -12,10 +12,10 @@ readme = "README.md" rust-version = "1.81.0" [dependencies] -tzdb_data = { version = "^0.2.0-pre.0", default-features = false, path = "../tzdb_data" } +tzdb_data = { version = "0.2.0-pre.0", default-features = false, path = "../tzdb_data" } -iana-time-zone = { version = "^0.1.60", default-features = false, features = ["fallback"], optional = true } -tz-rs = { version = "^0.7.0", default-features = false, features = ["std"] } +iana-time-zone = { version = "0.1.60", default-features = false, features = ["fallback"], optional = true } +tz-rs = { version = "0.7.0", default-features = false, features = ["std"] } [features] default = ["local", "now", "std"] diff --git a/tzdb_data/Cargo.toml b/tzdb_data/Cargo.toml index 2c06b30..6f2fe69 100644 --- a/tzdb_data/Cargo.toml +++ b/tzdb_data/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" rust-version = "1.81.0" [dependencies] -tz-rs = { version = "^0.7.0", default-features = false } +tz-rs = { version = "0.7.0", default-features = false } [package.metadata.docs.rs] all-features = true