diff options
author | ewang <[email protected]> | 2024-03-15 11:58:34 -0700 |
---|---|---|
committer | Yuchen Wu <[email protected]> | 2024-03-22 15:00:42 -0700 |
commit | ff381fc3ebfe16085a95a96ec687cc6378f61d28 (patch) | |
tree | 96bdd723c9ae04c162a859c816d3c6214a36d86f | |
parent | f43162470194fde6fd961f9c17f84edf110181d0 (diff) | |
download | pingora-ff381fc3ebfe16085a95a96ec687cc6378f61d28.tar.gz pingora-ff381fc3ebfe16085a95a96ec687cc6378f61d28.zip |
Require nix ~0.24.3 and chrono ~0.4.31 in Cargo.toml
These minor versions are required for the APIs used in pingora-core.
-rw-r--r-- | .bleep | 2 | ||||
-rw-r--r-- | pingora-core/Cargo.toml | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1 +1 @@ -75bf189b8e2ce2ab5acead15f8db45485085e577
\ No newline at end of file +62aab35f3ee85a4978de9075877b831e9f185ed2
\ No newline at end of file diff --git a/pingora-core/Cargo.toml b/pingora-core/Cargo.toml index 76d239c..a885e6b 100644 --- a/pingora-core/Cargo.toml +++ b/pingora-core/Cargo.toml @@ -35,13 +35,13 @@ http = { workspace = true } log = { workspace = true } h2 = { workspace = true } lru = { workspace = true } -nix = "0.24" +nix = "~0.24.3" structopt = "0.3" once_cell = { workspace = true } serde = { version = "1.0", features = ["derive"] } serde_yaml = "0.8" libc = "0.2.70" -chrono = { version = "0.4", features = ["alloc"], default-features = false } +chrono = { version = "~0.4.31", features = ["alloc"], default-features = false } thread_local = "1.0" prometheus = "0.13" daemonize = "0.5.0" |