Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand All @@ -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
Expand All @@ -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"
Expand Down
Loading