-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
41 lines (37 loc) · 1.54 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "cargo-xwin"
version = "0.17.5"
edition = "2021"
description = "Cross compile Cargo project to Windows MSVC target with ease"
license = "MIT"
keywords = ["windows", "cargo", "msvc"]
readme = "README.md"
repository = "https://github.com/rust-cross/cargo-xwin"
rust-version = "1.74"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }.{ target }.{ archive-format }"
[dependencies]
anyhow = "1.0.53"
cargo-config2 = "0.1.4"
cargo-options = "0.7.1"
clap = { version = "4.3.0", features = ["derive", "env", "wrap_help", "unstable-styles"] }
dirs = "5.0.0"
fs-err = "3.0.0"
indicatif = "0.17.2"
native-tls-crate = { package = "native-tls", version = "0.2.11", optional = true }
paste = "1.0.12"
path-slash = "0.2.0"
rustls = { version = "0.23.10", default-features = false, features = ["std", "tls12", "logging", "ring"], optional = true }
rustls-pemfile = { version = "2.0.0", optional = true }
tracing-subscriber = { version = "0.3.17", features = ["fmt"] }
ureq = { version = "2.11.0", default-features = false, features = ["gzip", "socks-proxy"] }
which = "7.0.0"
xwin = { version = "0.6.3", default-features = false }
[features]
# By default we use rustls for TLS
default = ["rustls-tls"]
rustls-tls = ["ureq/tls", "rustls", "rustls-pemfile"]
# If this feature is enabled we instead use the native TLS implementation for the
# target platform
native-tls = ["ureq/native-tls", "rustls-pemfile", "native-tls-crate"]