diff --git a/Cargo.lock b/Cargo.lock index 385ae145c4..dc63049a70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -704,6 +704,7 @@ dependencies = [ "common-test-util", "digest", "hex", + "notify", "secrecy", "sha1", "snafu", diff --git a/Cargo.toml b/Cargo.toml index 4681c65354..f3752ebcc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -110,6 +110,7 @@ lazy_static = "1.4" meter-core = { git = "https://github.com/GreptimeTeam/greptime-meter.git", rev = "80b72716dcde47ec4161478416a5c6c21343364d" } mockall = "0.11.4" moka = "0.12" +notify = "6.1" num_cpus = "1.16" once_cell = "1.18" opentelemetry-proto = { git = "https://github.com/waynexia/opentelemetry-rust.git", rev = "33841b38dda79b15f2024952be5f32533325ca02", features = [ diff --git a/src/auth/Cargo.toml b/src/auth/Cargo.toml index d50b63fcfc..a8f9b631ef 100644 --- a/src/auth/Cargo.toml +++ b/src/auth/Cargo.toml @@ -18,6 +18,7 @@ common-error.workspace = true common-macro.workspace = true digest = "0.10" hex = { version = "0.4" } +notify.workspace = true secrecy = { version = "0.8", features = ["serde", "alloc"] } sha1 = "0.10" snafu.workspace = true diff --git a/src/servers/Cargo.toml b/src/servers/Cargo.toml index 221ac3aa82..21e99bb8a3 100644 --- a/src/servers/Cargo.toml +++ b/src/servers/Cargo.toml @@ -60,7 +60,7 @@ influxdb_line_protocol = { git = "https://github.com/evenyag/influxdb_iox", bran itertools.workspace = true lazy_static.workspace = true mime_guess = "2.0" -notify = "6.1" +notify.workspace = true object-pool = "0.5" once_cell.workspace = true openmetrics-parser = "0.4"