Skip to content

Commit 9b6f995

Browse files
committed
Crates!
1 parent d5e1937 commit 9b6f995

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

gc/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
[package]
22
name = "gc"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
authors = ["Manish Goregaokar <[email protected]>", "Michael Layzell <[email protected]>"]
5+
description = "Tracing garbage collector plugin for Rust. Not ready for use yet, please see README"
6+
repository = "https://github.com/Manishearth/rust-gc"
7+
readme = "../README.md"
8+
license = "MPL-2.0"
9+
keywords = ["garbage", "plugin", "memory"]
510

611
[dependencies.gc_plugin]
712
path = "../gc_plugin"
8-
13+
version = "0.0.1"
914
[dev-dependencies]
1015
compiletest_rs = "*"

gc_plugin/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ name = "gc_plugin"
33
version = "0.0.1"
44
authors = ["Manish Goregaokar <[email protected]>", "Michael Layzell <[email protected]>"]
55

6+
description = "Garbage collector plugin for rust-gc"
7+
repository = "https://github.com/Manishearth/rust-gc"
8+
readme = "../README.md"
9+
license = "MPL-2.0"
10+
keywords = ["garbage", "plugin", "memory"]
11+
12+
613
[lib]
714
name = "gc_plugin"
8-
plugin = true
15+
plugin = true

0 commit comments

Comments
 (0)