nandi/rustnimpublic Fork 0
d4592812fae6b652d94be442f5b3a408d3ab21b6
Commits
Clone
git clone https://git.rickub.com/nandi/rustnim.git
git clone ssh://git@rickub.com/nandi/rustnim.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Expand `macro_rules!` rather than translating it to a Nim template 04eb29f · on d4592812fae6b652d94be442f5b3a408d3ab21b6 · nandithebull · 4h ago
Cargo.toml · 15 lines · 446 BTOML Blame HistoryRaw
 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"