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.lock · 60 lines · 1.5 KBText Blame HistoryRaw
Scaffold rustnim: Rust->Nim transpiler, type mapping 1a218c2 nandi 11h ago1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
Lower `bitflags!` directly, checked against the real crate af6e50f nandithebull 7h ago5[[package]]
6name = "bitflags"
7version = "2.13.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
10
Lower the `log` facade, and add explicit enum discriminants 12c0a01 nandithebull 6h ago11[[package]]
12name = "log"
13version = "0.4.34"
14source = "registry+https://github.com/rust-lang/crates.io-index"
15checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
16
Scaffold rustnim: Rust->Nim transpiler, type mapping 1a218c2 nandi 11h ago17[[package]]
18name = "proc-macro2"
19version = "1.0.107"
20source = "registry+https://github.com/rust-lang/crates.io-index"
21checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
22dependencies = [
23 "unicode-ident",
24]
25
26[[package]]
27name = "quote"
28version = "1.0.47"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
31dependencies = [
32 "proc-macro2",
33]
34
35[[package]]
36name = "rustnim"
37version = "0.1.0"
38dependencies = [
Lower `bitflags!` directly, checked against the real crate af6e50f nandithebull 7h ago39 "bitflags",
Lower the `log` facade, and add explicit enum discriminants 12c0a01 nandithebull 6h ago40 "log",
Expand `macro_rules!` rather than translating it to a Nim template 04eb29f nandithebull 6h ago41 "proc-macro2",
Scaffold rustnim: Rust->Nim transpiler, type mapping 1a218c2 nandi 11h ago42 "syn",
43]
44
45[[package]]
46name = "syn"
47version = "3.0.5"
48source = "registry+https://github.com/rust-lang/crates.io-index"
49checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
50dependencies = [
51 "proc-macro2",
52 "quote",
53 "unicode-ident",
54]
55
56[[package]]
57name = "unicode-ident"
58version = "1.0.24"
59source = "registry+https://github.com/rust-lang/crates.io-index"
60checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"