Skip to content

Commit

Permalink
update quanta + clean up semver notation in cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Apr 5, 2023
1 parent a0bd91a commit 9805689
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions metrics-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ log = "0.4"
pretty_env_logger = "0.4"
getopts = "0.2"
hdrhistogram = { version = "7.2", default-features = false }
quanta = "0.10.0"
portable-atomic = { version = "1.0", default-features = false, features = ["fallback"] }
metrics = { version = "^0.20", path = "../metrics" }
metrics-util = { version = "^0.14", path = "../metrics-util" }
quanta = "0.11"
portable-atomic = { version = "1", default-features = false, features = ["fallback"] }
metrics = { version = "0.20", path = "../metrics" }
metrics-util = { version = "0.14", path = "../metrics-util" }
8 changes: 4 additions & 4 deletions metrics-exporter-prometheus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ http-listener = ["async-runtime", "hyper/server", "ipnet"]
push-gateway = ["async-runtime", "hyper/client", "tracing"]

[dependencies]
metrics = { version = "^0.20", path = "../metrics" }
metrics-util = { version = "^0.14", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
metrics = { version = "0.20", path = "../metrics" }
metrics-util = { version = "0.14", path = "../metrics-util", default-features = false, features = ["recency", "registry", "summary"] }
thiserror = { version = "1", default-features = false }
quanta = { version = "0.10.0", default-features = false }
quanta = { version = "0.11", default-features = false }
indexmap = { version = "1", default-features = false }
portable-atomic = { version = "1.0", default-features = false, features = ["fallback"] }
portable-atomic = { version = "1", default-features = false, features = ["fallback"] }

# Optional
hyper = { version = "0.14", default-features = false, features = ["tcp", "http1"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion metrics-exporter-tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ categories = ["development-tools::debugging"]
keywords = ["metrics", "telemetry", "tcp"]

[dependencies]
metrics = { version = "^0.20", path = "../metrics" }
metrics = { version = "0.20", path = "../metrics" }
bytes = { version = "1", default-features = false }
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
prost = { version = "0.11", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions metrics-observer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ publish = false
license = "MIT"

[dependencies]
metrics = { version = "^0.20", path = "../metrics", default-features = false }
metrics-util = { version = "^0.14", path = "../metrics-util", default-features = false, features = ["summary"] }
metrics = { version = "0.20", path = "../metrics", default-features = false }
metrics-util = { version = "0.14", path = "../metrics-util", default-features = false, features = ["summary"] }
bytes = { version = "1", default-features = false }
crossbeam-channel = { version = "0.5", default-features = false, features = ["std"] }
prost = { version = "0.11", default-features = false }
prost-types = { version = "0.11", default-features = false }
tui = { version = "0.16", default-features = false, features = ["termion"] }
termion = { version = "2.0", default-features = false }
termion = { version = "2", default-features = false }
chrono = { version = "0.4", default-features = false, features = ["clock"] }

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions metrics-tracing-context/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ harness = false

[dependencies]
itoa = { version = "1", default-features = false }
metrics = { version = "^0.20", path = "../metrics" }
metrics-util = { version = "^0.14", path = "../metrics-util" }
metrics = { version = "0.20", path = "../metrics" }
metrics-util = { version = "0.14", path = "../metrics-util" }
lockfree-object-pool = { version = "0.1.3", default-features = false }
once_cell = { version = "1", default-features = false, features = ["std"] }
tracing = { version = "0.1.29", default-features = false }
Expand Down
10 changes: 5 additions & 5 deletions metrics-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ name = "bucket-crusher"
required-features = ["handles"]

[dependencies]
metrics = { version = "^0.20", path = "../metrics" }
metrics = { version = "0.20", path = "../metrics" }
crossbeam-epoch = { version = "0.9.2", default-features = false, optional = true, features = ["alloc", "std"] }
crossbeam-utils = { version = "0.8", default-features = false, optional = true }
portable-atomic = { version = "1.0", default-features = false, features = ["fallback"], optional = true }
portable-atomic = { version = "1", default-features = false, features = ["fallback"], optional = true }
aho-corasick = { version = "0.7", default-features = false, optional = true, features = ["std"] }
indexmap = { version = "1", default-features = false, optional = true }
quanta = { version = "0.10.0", default-features = false, optional = true }
sketches-ddsketch = { version = "0.2.0", default-features = false, optional = true }
quanta = { version = "0.11", default-features = false, optional = true }
sketches-ddsketch = { version = "0.2", default-features = false, optional = true }
radix_trie = { version = "0.2", default-features = false, optional = true }
ordered-float = { version = "3.4", default-features = false, optional = true }
num_cpus = { version = "1", default-features = false, optional = true }
Expand All @@ -68,7 +68,7 @@ rand = { version = "0.8", features = ["small_rng"] }
rand_distr = "0.4"
getopts = "0.2"
hdrhistogram = { version = "7.2", default-features = false }
sketches-ddsketch = "0.2.0"
sketches-ddsketch = "0.2"
ndarray = "0.15"
ndarray-stats = "0.5"
noisy_float = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ default = ["std-atomics"]
std-atomics = []

[dependencies]
metrics-macros = { version = "^0.6", path = "../metrics-macros" }
metrics-macros = { version = "0.6", path = "../metrics-macros" }
ahash = { version = "0.8", default-features = false }
portable-atomic = { version = "1.0", default-features = false, features = ["fallback"] }
portable-atomic = { version = "1", default-features = false, features = ["fallback"] }

[dev-dependencies]
log = "0.4"
Expand Down

0 comments on commit 9805689

Please sign in to comment.