-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 1.26 KB
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
[workspace]
members = [
"prebindgen",
"prebindgen-proc-macro",
"prebindgen-project-root",
"examples/example-cbindgen",
"examples/example-ffi",
]
resolver = "2"
package.version = "0.4.1"
package.edition = "2021"
package.rust-version = "1.75"
package.license = "MIT OR Apache-2.0"
package.authors = ["Michael Ilyin <milyin@gmail.com>"]
package.repository = "https://github.com/milyin/prebindgen"
package.documentation = "https://docs.rs/prebindgen"
package.readme = "README.md"
package.keywords = ["ffi", "bindings", "cbindgen", "csbindgen", "cross-platform"]
package.categories = ["development-tools", "external-ffi-bindings"]
[workspace.dependencies]
prebindgen = { path = "prebindgen" }
prebindgen-proc-macro = { path = "prebindgen-proc-macro" }
prebindgen-project-root = { path = "prebindgen-project-root" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "2.0", features = ["full", "visit-mut"] }
quote = "1.0"
proc-macro2 = "1.0"
regex = "1.0"
prettyplease = "0.2"
roxygen = "1.0.4"
tempfile = "3.0"
itertools = "0.14.0"
if_rust_version = "1.0"
konst = "0.3.0" # old one for for rust 1.75
toml = "0.9.5"
rand = "0.9.2"
[patch]
[patch.crates-io]
[patch.crates-io.prebindgen-project-root]
path = "prebindgen-project-root"