forked from lu-zero/cargo-c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (59 loc) · 1.4 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "cargo-c"
version = "0.9.29+cargo-0.76.0"
authors = ["Luca Barbato <[email protected]>"]
description = "Helper program to build and install c-like libraries"
license = "MIT"
edition = "2021"
readme = "README.md"
repository = "https://github.com/lu-zero/cargo-c"
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
keywords = ["cargo", "cdylib"]
rust-version = "1.72"
[[bin]]
name = "cargo-capi"
path = "src/bin/capi.rs"
[[bin]]
name = "cargo-cinstall"
path = "src/bin/cinstall.rs"
[[bin]]
name = "cargo-cbuild"
path = "src/bin/cbuild.rs"
[[bin]]
name = "cargo-ctest"
path = "src/bin/ctest.rs"
[dependencies]
cargo = "0.76.0"
cargo-util = "0.2"
semver = "1.0.3"
log = "0.4"
clap = { version="4.0.29", features=["color", "derive", "cargo"] }
regex = "1.5.6"
cbindgen = { version="0.26.0", default-features=false }
toml = "0.8"
serde = "1.0.123"
serde_derive = "1.0"
serde_json = "1.0.62"
anyhow = "1.0"
cc = "1.0"
glob = "0.3"
itertools = "0.12"
# workaround cargo
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.52"
features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Console",
"Win32_System_Threading",
"Win32_System_JobObjects",
"Win32_Security",
"Win32_System_SystemServices"
]
[features]
default = []
vendored-openssl = ["cargo/vendored-openssl"]
[profile.release-strip]
inherits = "release"
strip = "symbols"