rs-basic/members/c-bindings/Cargo.toml

15 lines
365 B
TOML
Raw Normal View History

2023-09-12 17:01:33 +02:00
[package]
name = "c-bindings"
version = "0.1.0"
edition = "2021"
2023-09-12 18:21:59 +02:00
links = "test" # this is the important part! cargo will search for some library called `test` (i.e. libtest.a)
build = "src/build.rs"
2023-09-12 17:01:33 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-09-12 18:21:59 +02:00
cty = "0.2.2"
[build-dependencies]
cc = "1.0.83"