From 85563e749cf19de03b920cd549574e008a2ce570 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 04:43:32 +0000 Subject: [PATCH] build(deps): bump amp-common from v0.9.3 to v0.9.4 Bumps [amp-common](https://github.com/amphitheatre-app/common) from v0.9.3 to v0.9.4. - [Commits](https://github.com/amphitheatre-app/common/compare/c4f17cc42e47cb1e135139cd421b63e083b4d254...1f33b38d0af8f9d87b87bfa11083b3277a6eba0a) --- updated-dependencies: - dependency-name: amp-common dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 73 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6ffaa3d..8e1cdd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -50,7 +50,7 @@ name = "amp-client" version = "0.9.2" source = "git+https://github.com/amphitheatre-app/amp-client-rust?tag=v0.9.2#0d761d447778097425bcd84cd052b50158556362" dependencies = [ - "amp-common", + "amp-common 0.9.3", "futures", "reqwest-eventsource", "serde", @@ -72,7 +72,35 @@ dependencies = [ "json_comments", "k8s-openapi", "kube", - "notify", + "notify 6.1.1", + "oci-distribution", + "schemars", + "serde", + "serde_json", + "thiserror", + "toml", + "tracing", + "ureq", + "url", + "utoipa", + "validator", +] + +[[package]] +name = "amp-common" +version = "0.9.4" +source = "git+https://github.com/amphitheatre-app/common?tag=v0.9.4#1f33b38d0af8f9d87b87bfa11083b3277a6eba0a" +dependencies = [ + "anyhow", + "chrono", + "confy", + "convert_case", + "data-encoding", + "dirs", + "json_comments", + "k8s-openapi", + "kube", + "notify 7.0.0", "oci-distribution", "schemars", "serde", @@ -1166,6 +1194,17 @@ dependencies = [ "libc", ] +[[package]] +name = "inotify" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc" +dependencies = [ + "bitflags 1.3.2", + "inotify-sys", + "libc", +] + [[package]] name = "inotify-sys" version = "0.1.5" @@ -1531,6 +1570,7 @@ checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" dependencies = [ "hermit-abi", "libc", + "log", "wasi", "windows-sys 0.52.0", ] @@ -1555,7 +1595,7 @@ dependencies = [ "crossbeam-channel", "filetime", "fsevent-sys", - "inotify", + "inotify 0.9.6", "kqueue", "libc", "log", @@ -1564,6 +1604,34 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "notify" +version = "7.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009" +dependencies = [ + "bitflags 2.6.0", + "filetime", + "fsevent-sys", + "inotify 0.10.2", + "kqueue", + "libc", + "log", + "mio 1.0.2", + "notify-types", + "walkdir", + "windows-sys 0.52.0", +] + +[[package]] +name = "notify-types" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7393c226621f817964ffb3dc5704f9509e107a8b024b489cc2c1b217378785df" +dependencies = [ + "instant", +] + [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -1788,7 +1856,7 @@ name = "playground-api" version = "0.3.1" dependencies = [ "amp-client", - "amp-common", + "amp-common 0.9.4", "anyhow", "axum", "clap", diff --git a/Cargo.toml b/Cargo.toml index 5cc203d..4ce8db1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ path = "src/lib.rs" [dependencies] amp-client = { git = "https://github.com/amphitheatre-app/amp-client-rust", tag = "v0.9.2" } -amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.9.3" } +amp-common = { git = "https://github.com/amphitheatre-app/common", tag = "v0.9.4" } anyhow = "1.0.92" axum = { version = "0.7.7" } clap = { version = "4.5.20", features = ["derive", "env"] }