2020-10-05 07:07:40 +03:00
|
|
|
[package]
|
|
|
|
name = "async_ossl"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
|
|
edition = "2018"
|
2021-03-25 19:34:00 +03:00
|
|
|
resolver = "2"
|
2020-10-05 07:07:40 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2021-03-25 19:34:00 +03:00
|
|
|
[target.'cfg(not(any(windows, target_os="macos")))'.dependencies]
|
2020-10-05 07:07:40 +03:00
|
|
|
openssl = "0.10"
|
2021-03-25 19:34:00 +03:00
|
|
|
|
|
|
|
[target.'cfg(any(windows, target_os="macos"))'.dependencies]
|
|
|
|
openssl = { version = "0.10", features=["vendored"] }
|
|
|
|
|