diff --git a/Cargo.lock b/Cargo.lock index d8fb7439..cc4bacb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,7 +81,7 @@ dependencies = [ "helm-engine-wasm", "kcl-lang", "kustomize-engine-wasm", - "notify 6.1.1", + "notify 8.2.0", "notify-debouncer-mini", "p256", "pem", @@ -2938,6 +2938,17 @@ dependencies = [ "libc", ] +[[package]] +name = "inotify" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd5b3eaf1a28b758ac0faa5a4254e8ab2705605496f1b1f3fbbc3988ad73d199" +dependencies = [ + "bitflags 2.11.1", + "inotify-sys", + "libc", +] + [[package]] name = "inotify-sys" version = "0.1.5" @@ -4096,11 +4107,29 @@ dependencies = [ "libc", "log", "mio 1.2.0", - "notify-types", + "notify-types 1.0.1", "walkdir", "windows-sys 0.52.0", ] +[[package]] +name = "notify" +version = "8.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3" +dependencies = [ + "bitflags 2.11.1", + "fsevent-sys", + "inotify 0.11.1", + "kqueue", + "libc", + "log", + "mio 1.2.0", + "notify-types 2.1.0", + "walkdir", + "windows-sys 0.60.2", +] + [[package]] name = "notify-debouncer-mini" version = "0.4.1" @@ -4120,6 +4149,15 @@ dependencies = [ "instant", ] +[[package]] +name = "notify-types" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a" +dependencies = [ + "bitflags 2.11.1", +] + [[package]] name = "num-bigint" version = "0.4.6" diff --git a/crates/akua-core/Cargo.toml b/crates/akua-core/Cargo.toml index bce5aa2e..07f6bafa 100644 --- a/crates/akua-core/Cargo.toml +++ b/crates/akua-core/Cargo.toml @@ -94,7 +94,7 @@ p256 = { version = "0.13", default-features = false, features = ["ecdsa", "std", pkcs8 = { version = "0.10", default-features = false, features = ["pem", "pkcs5", "encryption", "alloc"], optional = true } pem = { version = "3", optional = true } signature = { version = "2", optional = true } -notify = { version = "6", optional = true } +notify = { version = "8", optional = true } notify-debouncer-mini = { version = "0.4", optional = true, default-features = false } [dev-dependencies]