-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.21 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
[package]
edition = "2021"
name = "cxx-auto"
version = "0.0.3"
authors = ["silvanshade <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/silvanshade/cxx-auto"
documentation = "https://silvanshade.github.io/cxx-auto/cxx_auto"
description = "Automatically generate cxx bindings"
# NOTE: `links` is needed so that `cxx/include/**/*.hxx` is exported to dependencies
links = "cxx-auto"
[features]
alloc = []
default = ["std"]
std = ["alloc", "libc/std"]
valgrind = []
[build-dependencies]
cxx-build = { version = "1.0", features = ["parallel"] }
regex = "1.9"
serde = { version = "1.0", features = ["derive"] }
toml = "0.7"
[dependencies]
bytemuck = { version = "1.13", optional = true }
cxx = { version = "1.0", features = ["c++20"] }
cxx-build = { version = "1.0", features = ["parallel"] }
indexmap = { version = "2.0", features = ["serde"] }
libc = "0.2"
proc-macro2 = "1.0"
quote = "1.0"
rust-format = { version = "0.3", features = ["token_stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
syn = { version = "2.0", features = ["full"] }
walkdir = "2.3"
[workspace]
members = [".", "xtask"]