diff --git a/Cargo.lock b/Cargo.lock index e8fb8fd64..65352a8eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3272,9 +3272,9 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.136" +version = "1.0.137" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789" +checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" dependencies = [ "serde_derive", ] @@ -3303,9 +3303,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.136" +version = "1.0.137" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9" +checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" dependencies = [ "proc-macro2", "quote", diff --git a/kanidm_client/Cargo.toml b/kanidm_client/Cargo.toml index 8c7bf11ff..e7ad58b28 100644 --- a/kanidm_client/Cargo.toml +++ b/kanidm_client/Cargo.toml @@ -14,7 +14,7 @@ repository = "https://github.com/kanidm/kanidm/" tracing = "^0.1.34" reqwest = { version = "^0.11.10", features=["cookies", "json", "native-tls"] } kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" } -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80" toml = "^0.5.9" uuid = { version = "^1.0.0", features = ["serde", "v4"] } diff --git a/kanidm_proto/Cargo.toml b/kanidm_proto/Cargo.toml index 2e3c38405..139daf75c 100644 --- a/kanidm_proto/Cargo.toml +++ b/kanidm_proto/Cargo.toml @@ -11,7 +11,7 @@ homepage = "https://github.com/kanidm/kanidm/" repository = "https://github.com/kanidm/kanidm/" [dependencies] -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80" uuid = { version = "^1.0.0", features = ["serde"] } base32 = "^0.4.0" diff --git a/kanidm_tools/Cargo.toml b/kanidm_tools/Cargo.toml index 3e974a7c6..e4e602b22 100644 --- a/kanidm_tools/Cargo.toml +++ b/kanidm_tools/Cargo.toml @@ -36,7 +36,7 @@ tracing-subscriber = { version = "^0.3.11", features = ["env-filter", "fmt"] } rpassword = "^6.0.1" structopt = { version = "^0.3.26", default-features = false } libc = "^0.2.125" -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80" shellexpand = "^2.1.0" rayon = "^1.5.2" diff --git a/kanidm_unix_int/Cargo.toml b/kanidm_unix_int/Cargo.toml index 8b64af8db..e94f8f63e 100644 --- a/kanidm_unix_int/Cargo.toml +++ b/kanidm_unix_int/Cargo.toml @@ -59,7 +59,7 @@ futures = "^0.3.21" bytes = "^1.1.0" libc = "^0.2.125" -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } serde_cbor = "^0.11.2" structopt = { version = "0.3.26", default-features = false } diff --git a/kanidmd/daemon/Cargo.toml b/kanidmd/daemon/Cargo.toml index 506029e24..c0254fe40 100644 --- a/kanidmd/daemon/Cargo.toml +++ b/kanidmd/daemon/Cargo.toml @@ -21,7 +21,7 @@ kanidm = { path = "../idm" } score = { path = "../score" } structopt = { version = "^0.3.26", default-features = false } users = "^0.11.0" -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } tokio = { version = "^1.18.0", features = ["rt-multi-thread", "macros", "signal"] } toml = "0.5.9" diff --git a/kanidmd/idm/Cargo.toml b/kanidmd/idm/Cargo.toml index 5968ee97b..f44fd0992 100644 --- a/kanidmd/idm/Cargo.toml +++ b/kanidmd/idm/Cargo.toml @@ -47,7 +47,7 @@ openssl = "^0.10.38" uuid = { version = "^1.0.0", features = ["serde", "v4" ] } compiled-uuid = "0.1.2" -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } serde_cbor = "^0.11.2" serde_json = "^1.0.80" diff --git a/kanidmd/score/Cargo.toml b/kanidmd/score/Cargo.toml index 3d0326b38..cca50ba80 100644 --- a/kanidmd/score/Cargo.toml +++ b/kanidmd/score/Cargo.toml @@ -30,7 +30,7 @@ openssl = "^0.10.38" ldap3_proto = "^0.2.3" tracing = { version = "^0.1.34", features = ["attributes"] } -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } async-trait = "^0.1.53" async-std = { version = "^1.11.0", features = ["tokio1"] } compact_jwt = "^0.2.1" diff --git a/kanidmd_web_ui/Cargo.toml b/kanidmd_web_ui/Cargo.toml index 87fa9653b..619b584ca 100644 --- a/kanidmd_web_ui/Cargo.toml +++ b/kanidmd_web_ui/Cargo.toml @@ -17,7 +17,7 @@ repository = "https://github.com/kanidm/kanidm/" crate-type = ["cdylib", "rlib"] [dependencies] -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80" wasm-bindgen = { version = "^0.2.80", features = ["serde-serialize"] } diff --git a/orca/Cargo.toml b/orca/Cargo.toml index f7f15ee90..1da21eed8 100644 --- a/orca/Cargo.toml +++ b/orca/Cargo.toml @@ -23,7 +23,7 @@ structopt = { version = "^0.3.26", default-features = false } uuid = { version = "^1.0.0", features = ["serde", "v4" ] } csv = "1.1.6" -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } serde_json = "^1.0.80" rand = "^0.8.5" diff --git a/profiles/Cargo.toml b/profiles/Cargo.toml index dfdb06103..04c77f22e 100644 --- a/profiles/Cargo.toml +++ b/profiles/Cargo.toml @@ -15,7 +15,7 @@ name = "profiles" path = "src/lib.rs" [dependencies] -serde = { version = "^1.0.136", features = ["derive"] } +serde = { version = "^1.0.137", features = ["derive"] } toml = "^0.5.9" base64 = "^0.13.0"