diff --git a/Cargo.lock b/Cargo.lock index 5490c686f..4f7b506c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1722,8 +1722,6 @@ dependencies = [ "libc", "libgit2-sys", "log", - "openssl-probe", - "openssl-sys", "url", ] @@ -2739,9 +2737,7 @@ checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa" dependencies = [ "cc", "libc", - "libssh2-sys", "libz-sys", - "openssl-sys", "pkg-config", ] @@ -2777,20 +2773,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "libssh2-sys" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee" -dependencies = [ - "cc", - "libc", - "libz-sys", - "openssl-sys", - "pkg-config", - "vcpkg", -] - [[package]] name = "libudev" version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index fe49896f4..298374eb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -120,7 +120,7 @@ fs2 = "^0.4.3" futures = "^0.3.28" futures-concurrency = "^3.1.0" futures-util = { version = "^0.3.21", features = ["sink"] } -git2 = "0.17.2" +git2 = { version = "0.17.2", default-features = false } gloo = "^0.8.1" hashbrown = { version = "0.14.0", features = ["serde", "inline-more", "ahash"] } hex = "^0.4.3" @@ -185,7 +185,10 @@ tokio-util = "^0.7.8" toml = "^0.5.11" touch = "^0.0.1" -tracing = { version = "^0.1.37", features = ["max_level_trace", "release_max_level_debug"] } +tracing = { version = "^0.1.37", features = [ + "max_level_trace", + "release_max_level_debug", +] } # tracing = { version = "^0.1.37" } tracing-subscriber = { version = "^0.3.17", features = ["env-filter"] } tracing-forest = "^0.1.6" @@ -201,7 +204,11 @@ wasm-bindgen = "^0.2.86" wasm-bindgen-futures = "^0.4.30" wasm-bindgen-test = "0.3.35" -webauthn-authenticator-rs = { version = "0.5.0-dev", features = ["softpasskey", "softtoken", "mozilla"] } +webauthn-authenticator-rs = { version = "0.5.0-dev", features = [ + "softpasskey", + "softtoken", + "mozilla", +] } webauthn-rs = { version = "0.5.0-dev", features = ["preview-features"] } webauthn-rs-core = "0.5.0-dev" webauthn-rs-proto = "0.5.0-dev" diff --git a/server/lib/src/plugins/refint.rs b/server/lib/src/plugins/refint.rs index fccf0d631..85690f794 100644 --- a/server/lib/src/plugins/refint.rs +++ b/server/lib/src/plugins/refint.rs @@ -248,7 +248,7 @@ impl Plugin for ReferentialIntegrity { } } - // We can now combine this with the confict uuids from the incoming set. + // We can now combine this with the conflict uuids from the incoming set. // In a conflict case, we need to also add these uuids to the delete logic // since on the originator node the original uuid will still persist diff --git a/server/lib/src/repl/tests.rs b/server/lib/src/repl/tests.rs index 27f8dad27..39e2d21a7 100644 --- a/server/lib/src/repl/tests.rs +++ b/server/lib/src/repl/tests.rs @@ -2491,7 +2491,7 @@ async fn test_repl_increment_refint_conflict(server_a: &QueryServer, server_b: & // the true intent of the situation now. // // In this example, the users created on server A was intended to be a member of - // the group, but the user on server B *was not* intended to be a member. Therfore + // the group, but the user on server B *was not* intended to be a member. Therefore // it's wrong that we retain the user from Server B *while* also the membership // that was intended for the user on A. let e = server_b_txn