Skip to content

Commit

Permalink
Crates!
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Jun 2, 2015
1 parent d5e1937 commit 9b6f995
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
9 changes: 7 additions & 2 deletions gc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
[package]
name = "gc"
version = "0.0.1"
version = "0.0.2"
authors = ["Manish Goregaokar <manishsmail@gmail.com>", "Michael Layzell <michael@thelayzells.com>"]
description = "Tracing garbage collector plugin for Rust. Not ready for use yet, please see README"
repository = "https://github.com/Manishearth/rust-gc"
readme = "../README.md"
license = "MPL-2.0"
keywords = ["garbage", "plugin", "memory"]

[dependencies.gc_plugin]
path = "../gc_plugin"

version = "0.0.1"
[dev-dependencies]
compiletest_rs = "*"
9 changes: 8 additions & 1 deletion gc_plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ name = "gc_plugin"
version = "0.0.1"
authors = ["Manish Goregaokar <manishsmail@gmail.com>", "Michael Layzell <michael@thelayzells.com>"]

description = "Garbage collector plugin for rust-gc"
repository = "https://github.com/Manishearth/rust-gc"
readme = "../README.md"
license = "MPL-2.0"
keywords = ["garbage", "plugin", "memory"]


[lib]
name = "gc_plugin"
plugin = true
plugin = true

0 comments on commit 9b6f995

Please sign in to comment.