Skip to content

Commit d31dde2

Browse files
committed
UNTESTED: Add derive internals from DuckASM
As the header says, this is completely untested. However, I have some confidence it works since it did back in DuckASM. As Linus said: "Testing"? What's that? If it compiles, it's good. If it boots, it's perfect.
1 parent 0ddd49d commit d31dde2

File tree

13 files changed

+1387
-17
lines changed

13 files changed

+1387
-17
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ builtins = []
2020

2121

2222
[workspace]
23+
members = ["lib/*"]

lib/derive-internals/Cargo.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[package]
2+
name = "static-reflect-derive-internals"
3+
version = "0.1.0"
4+
edition = "2018"
5+
publish = false
6+
7+
[dependencies]
8+
itertools = "0.9.0"
9+
proc-macro2 = "^1"
10+
quote = "^1"
11+
indexmap = "1.6"
12+
13+
[dependencies.syn]
14+
version = "1"
15+
features = ["full", "extra-traits"]
16+
17+
[dev-dependencies]
18+
# Testing
19+
static-reflect = { version = "0.1.0", path = "../.." }

0 commit comments

Comments
 (0)