Skip to content

Commit

Permalink
add metadata to cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Mar 22, 2018
1 parent 8a9c35d commit 329ae59
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
name = "chalk"
version = "0.1.0"
description = "Model of the Rust trait system"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
repository = "https://github.com/rust-lang-nursery/chalk"
readme = "README.md"
keywords = ["compiler", "traits", "prolog"]

[dependencies]
diff = "0.1.11"
Expand All @@ -17,12 +22,15 @@ serde_derive = "1.0"
stacker = "0.1.2"

[dependencies.chalk-parse]
version = "0.1.0"
path = "chalk-parse"

[dependencies.chalk-macros]
version = "0.1.0"
path = "chalk-macros"

[dependencies.chalk-engine]
version = "0.1.0"
path = "chalk-engine"

[workspace]
8 changes: 7 additions & 1 deletion chalk-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
name = "chalk-engine"
version = "0.1.0"
description = "Core trait engine from Chalk project"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
repository = "https://github.com/rust-lang-nursery/chalk"
readme = "README.md"
keywords = ["compiler", "traits", "prolog"]

[dependencies]
diff = "0.1.11"
Expand All @@ -18,4 +23,5 @@ serde_derive = "1.0"
stacker = "0.1.2"

[dependencies.chalk-macros]
version = "0.1.0"
path = "../chalk-macros"
7 changes: 6 additions & 1 deletion chalk-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "chalk-macros"
version = "0.1.0"
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
description = "Macros for Chalk"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
repository = "https://github.com/rust-lang-nursery/chalk"
readme = "README.md"
keywords = ["compiler", "traits", "prolog"]

[dependencies]
lazy_static = "0.2.2"
7 changes: 6 additions & 1 deletion chalk-parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "chalk-parse"
version = "0.1.0"
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
description = "Parser for the Chalk project"
license = "Apache-2.0/MIT"
authors = ["Rust Compiler Team", "Chalk developers"]
repository = "https://github.com/rust-lang-nursery/chalk"
readme = "README.md"
keywords = ["compiler", "traits", "prolog"]
build = "build.rs" # LALRPOP preprocessing

# Add a dependency on the LALRPOP runtime library:
Expand Down

0 comments on commit 329ae59

Please sign in to comment.