diff --git a/Cargo.toml b/Cargo.toml index 5abd663..72dd294 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ self_update = { version = "0.44.0", features = [ ] } md5 = "0.8.0" ulid = "1.2.1" -keyring-core = {version = "1.0.0", features = ["sample"]} +keyring-core = { version = "1.0.0", features = ["sample"] } whoami = "2.1.2" [target.'cfg(target_os = "windows")'.dependencies] @@ -78,8 +78,9 @@ apple-native-keyring-store = { version = "1.0.0", features = ["keychain"] } linux-keyutils-keyring-store = { version = "1.0.0" } [target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies] -zbus-secret-service-keyring-store = { version = "1.0.0", features = ["crypto-rust"] } - +zbus-secret-service-keyring-store = { version = "1.0.0", features = [ + "crypto-rust", +] } [features] @@ -89,7 +90,10 @@ rustls = [ "openidconnect/rustls-tls", "self_update/rustls", ] # include rustls, ssl library written in rust -vendored-openssl = ["openssl/vendored"] # include compiled openssl library +vendored-openssl = [ + "openssl/vendored", + "reqwest/native-tls-vendored", +] # include compiled openssl library vendored-zlib = [ "git2/zlib-ng-compat", ] # without this feature wherever the cli is installed needs to have zlib.so @@ -100,11 +104,7 @@ assert_cmd = "2.0.16" predicates = "3.1.2" [build-dependencies] -vergen-gix = { version = "10.0.1", features = [ - "build", - "cargo", - "rustc", -] } +vergen-gix = { version = "10.0.1", features = ["build", "cargo", "rustc"] } [profile.release] strip = "debuginfo"