nandi/rustnimpublic Fork 0
12c0a01b02392b18af24b583ba4ff65ad040e86a
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 · 14 lines · 428 BTOML Blame HistoryRaw
Scaffold rustnim: Rust->Nim transpiler, type mapping 1a218c2 nandi 20h ago1[package]
2name = "rustnim"
3version = "0.1.0"
4edition = "2024"
5
6[dependencies]
7syn = { version = "3.0.5", features = ["full", "extra-traits", "visit"] }
Lower `bitflags!` directly, checked against the real crate af6e50f nandithebull 16h ago8
9# Used only by the test corpus: a case carrying `//@ extern: bitflags` is
10# compiled by the oracle against the real crate, so the `bitflags!` lowering is
11# checked against it rather than against our reading of its documentation.
12[dev-dependencies]
13bitflags = "2"
Lower the `log` facade, and add explicit enum discriminants 12c0a01 nandithebull 16h ago14log = "0.4"