forked from rust-lang/chalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.05 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "chalk"
version = "0.51.0-dev.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/chalk"
readme = "README.md"
keywords = ["compiler", "traits", "prolog"]
edition = "2018"
publish = false
[features]
bench = []
[dependencies]
docopt = "1.1.0"
itertools = "0.9.0"
rustyline = "6.2.0"
salsa = "0.15.0"
serde = "1.0"
serde_derive = "1.0"
chalk-derive = { version = "0.51.0-dev.0", path = "chalk-derive" }
chalk-engine = { version = "0.51.0-dev.0", path = "chalk-engine" }
chalk-ir = { version = "0.51.0-dev.0", path = "chalk-ir" }
chalk-solve = { version = "0.51.0-dev.0", path = "chalk-solve" }
chalk-recursive = { version = "0.51.0-dev.0", path = "chalk-recursive" }
chalk-parse = { version = "0.51.0-dev.0", path = "chalk-parse" }
chalk-integration = { version = "0.51.0-dev.0", path = "chalk-integration" }
[workspace]
[dev-dependencies]
# used for program_writer test errors
diff = "0.1"
pretty_assertions = "0.6.1"
regex = "1"