nandi/rustnimpublic Fork 0
3d4a7d283b83d3a5305dfc6654c290bd4ee162ae
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.

Cargo.toml · 15 lines · 446 BTOML Blame HistoryRaw
Scaffold rustnim: Rust->Nim transpiler, type mapping 1a218c2 nandi 11h ago1[package]
2name = "rustnim"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
Expand `macro_rules!` rather than translating it to a Nim template 04eb29f nandithebull 6h ago7proc-macro2 = "1"
Scaffold rustnim: Rust->Nim transpiler, type mapping 1a218c2 nandi 11h ago8syn = { version = "3.0.5", features = ["full", "extra-traits", "visit"] }
Lower `bitflags!` directly, checked against the real crate af6e50f nandithebull 7h ago9
10# Used only by the test corpus: a case carrying `//@ extern: bitflags` is
11# compiled by the oracle against the real crate, so the `bitflags!` lowering is
12# checked against it rather than against our reading of its documentation.
13[dev-dependencies]
14bitflags = "2"
Lower the `log` facade, and add explicit enum discriminants 12c0a01 nandithebull 6h ago15log = "0.4"