-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Cargo.toml
36 lines (33 loc) · 1007 Bytes
/
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
[package]
name = "cargo-zigbuild"
version = "0.19.4"
edition = "2021"
description = "Compile Cargo project with zig as linker"
license = "MIT"
keywords = ["zig", "cargo"]
readme = "README.md"
repository = "https://github.com/rust-cross/cargo-zigbuild"
rust-version = "1.74"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.53"
cargo-config2 = "0.1.24"
cargo-options = "0.7.4"
cargo_metadata = "0.18.0"
clap = { version = "4.3.0", features = ["derive", "env", "wrap_help", "unstable-styles"] }
crc = "3.2.1"
dirs = "5.0.0"
fat-macho = { version = "0.4.6", default-features = false, optional = true }
fs-err = "2.6.0"
path-slash = "0.2.0"
rustc_version = "0.4.0"
rustflags = "0.1.6"
semver = "1.0.5"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
shlex = "1"
target-lexicon = { version = "0.12.15", features = ["std"] }
which = "6.0.0"
[features]
default = ["universal2"]
universal2 = ["fat-macho"]