Skip to content

Commit 6b3364a

Browse files
authored
- only build openssl on linux/macos (#53)
- version 1.6.7
1 parent 0b1e918 commit 6b3364a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "corgea"
3-
version = "1.6.6"
3+
version = "1.6.7"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -15,7 +15,6 @@ reqwest = { version = "0.12.23", default-features = false, features = [
1515
"native-tls",
1616
"system-proxy",
1717
] }
18-
openssl = { version = "*", features = ["vendored"] }
1918
toml = "0.8.8"
2019
serde = { version = "1.0.195", features = ["derive"] }
2120
serde_json = "1.0.111"
@@ -31,3 +30,6 @@ termcolor = "1.1"
3130
git2 = { version = "0.20.0", default-features = false }
3231
regex = "1"
3332
chrono = "0.4"
33+
34+
[target.'cfg(not(target_os = "windows"))'.dependencies]
35+
openssl = { version = "0.10", features = ["vendored"] }

0 commit comments

Comments
 (0)