-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Cargo.toml
59 lines (51 loc) · 1.32 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
[package]
name = "cargo-c"
version = "0.10.7+cargo-0.84.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.81"
[[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.84.0"
cargo-util = "0.2"
semver = "1.0.3"
log = "0.4"
clap = { version = "4.5.18", features = ["color", "derive", "cargo", "string", "wrap_help"] }
regex = "1.5.6"
cbindgen = { version="0.27.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.13"
implib = "0.3.3"
object = { version = "0.36.4", default-features = false, features = ["std", "read_core", "pe"] }
[features]
default = []
vendored-openssl = ["cargo/vendored-openssl"]
[profile.release-strip]
inherits = "release"
strip = "symbols"
# To avoid #414
[workspace]
exclude = ["example-project", "example-workspace"]