diff --git a/Cargo.lock b/Cargo.lock index 70604c63a..e8afe6763 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -218,12 +218,13 @@ dependencies = [ [[package]] name = "av1-grain" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c799433bc1f0ed14d949885186738de9976cfcaefef0e3ab7103fe5c630cb2b" +checksum = "620afb8bfa7c1eaef9f5b6284ff7c1e239b85ac9c56b9f2df1f101ea9827d379" dependencies = [ "anyhow", "arrayvec", + "cfg-if", "log", ] @@ -431,9 +432,9 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.6.0" +version = "4.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19c9f1dde76b736e3681f28cec9d5a61299cbaae0fce80a68e43724ad56031eb" +checksum = "406e68b4de5c59cfb8f750a7cbd4d31ae153788b8352167c1e5f4fc26e8c91e9" dependencies = [ "clap", ] @@ -1491,9 +1492,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" [[package]] name = "rand" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" +checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" dependencies = [ "chacha20", "getrandom 0.4.2", diff --git a/av1an-core/Cargo.toml b/av1an-core/Cargo.toml index 766aaa224..2194f8b69 100644 --- a/av1an-core/Cargo.toml +++ b/av1an-core/Cargo.toml @@ -24,7 +24,7 @@ av-scenechange = { version = "0.23.0", default-features = false, features = [ "asm", "vapoursynth", ] } -av1-grain = { version = "0.4.1", default-features = false, features = [ +av1-grain = { version = "0.4.2", default-features = false, features = [ "create", ] } cfg-if = "1.0.4" @@ -43,7 +43,7 @@ plotters = { version = "0.3.1", default-features = false, features = [ "svg_backend", "line_series", ] } -rand = "0.10.0" +rand = "0.10.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simdutf8 = "0.1.3" diff --git a/av1an/Cargo.toml b/av1an/Cargo.toml index a7fd40b27..a7cccc39c 100644 --- a/av1an/Cargo.toml +++ b/av1an/Cargo.toml @@ -20,7 +20,7 @@ path = "src/main.rs" anyhow = { workspace = true } av1an-core = { path = "../av1an-core", version = "0.5.1" } clap = { version = "4.5.60", features = ["derive"] } -clap_complete = "4.5.66" +clap_complete = "4.6.1" num-traits = { workspace = true } once_cell = { workspace = true } path_abs = { workspace = true }