Skip to content

Commit 3000980

Browse files
committed
Publish v0.1.0
I wanna take the namespace. I'll obviously be developing this more, but this is the basic implementation I used inside DuckASM.
1 parent 0a03095 commit 3000980

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
edition = "2018"
55
description = "Static type information, giving a form of compile-time reflection"
66
license = "MIT"
7+
repository = "https://github.com/DuckLogic/rust-static-reflect"
8+
readme = "README.md"
79

810
[dependencies]
911
# Optional: Support for zerogc

lib/derive-internals/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
name = "static-reflect-derive-internals"
33
version = "0.1.0"
44
edition = "2018"
5-
publish = false
5+
license = "MIT"
6+
description = "The internal implementation of procedural derive for `static-reflect`"
7+
repository = "https://github.com/DuckLogic/rust-static-reflect"
68

79
[dependencies]
810
itertools = "0.9.0"

lib/derive/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "static-reflect-derive"
3-
description = "Automatic derive for static-reflect"
3+
description = "Procedural derive for static-reflect"
44
version = "0.1.0"
55
edition = "2018"
66
license = "MIT"
7+
repository = "https://github.com/DuckLogic/rust-static-reflect"
8+
79

810
[lib]
911
proc-macro = true

0 commit comments

Comments
 (0)