1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-29 10:04:49 +03:00
wezterm/async_ossl/Cargo.toml

20 lines
475 B
TOML
Raw Normal View History

[package]
name = "async_ossl"
version = "0.1.0"
authors = ["Wez Furlong <wez@wezfurlong.org>"]
edition = "2018"
resolver = "2"
2024-05-13 18:29:36 +03:00
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-05-13 20:01:35 +03:00
[dependencies]
async-io = "2.3"
[target.'cfg(not(any(windows, target_os="macos")))'.dependencies]
openssl = "0.10"
[target.'cfg(any(windows, target_os="macos"))'.dependencies]
openssl = { version = "0.10", features=["vendored"] }