mirror of
https://github.com/wez/wezterm.git
synced 2024-11-25 21:07:39 +03:00
20 lines
475 B
TOML
20 lines
475 B
TOML
[package]
|
|
name = "async_ossl"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
resolver = "2"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[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"] }
|
|
|