1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[package]
name = "rustnim"
version = "0.1.0"
edition = "2024"
[dependencies]
proc-macro2 = "1"
syn = { version = "3.0.5", features = ["full", "extra-traits", "visit"] }
# Used only by the test corpus: a case carrying `//@ extern: bitflags` is
# compiled by the oracle against the real crate, so the `bitflags!` lowering is
# checked against it rather than against our reading of its documentation.
[dev-dependencies]
bitflags = "2"
log = "0.4"
|