forked from rust-cross/cargo-xwin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1.04 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
[package]
name = "cargo-xwin"
version = "0.14.4"
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.63"
# 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.6.0"
clap = { version = "4.0.0", features = ["derive", "env", "wrap_help"] }
dirs = "5.0.0"
fs-err = "2.7.0"
indicatif = "0.17.2"
path-slash = "0.2.0"
which = "4.2.4"
xwin = { version = "0.2.9", default-features = false }
[features]
# By default we use rustls for TLS
default = ["rustls-tls"]
rustls-tls = ["xwin/rustls-tls"]
# If this feature is enabled we instead use the native TLS implementation for the
# target platform
native-tls = ["xwin/native-tls"]