forked from rust-lang/chalk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
58 lines (47 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
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/chalk"
readme = "README.md"
keywords = ["compiler", "traits", "prolog"]
edition = "2018"
[features]
bench = []
[dependencies]
diff = "0.1.11"
docopt = "1.0.0"
itertools = "0.8.0"
lalrpop-intern = "0.15.1"
rustyline = "1.0"
salsa = "0.10.0"
serde = "1.0"
serde_derive = "1.0"
stacker = "0.1.5"
[dependencies.chalk-parse]
version = "0.1.0"
path = "chalk-parse"
[dependencies.chalk-ir]
version = "0.1.0"
path = "chalk-ir"
[dependencies.chalk-solve]
version = "0.1.0"
path = "chalk-solve"
[dependencies.chalk-macros]
version = "0.1.0"
path = "chalk-macros"
[dependencies.chalk-engine]
version = "0.9.0"
path = "chalk-engine"
[dependencies.chalk-rust-ir]
version = "0.1.0"
path = "chalk-rust-ir"
[dependencies.chalk-derive]
version = "0.1.0"
path = "chalk-derive"
[dependencies.chalk-integration]
version = "0.1.0"
path = "chalk-integration"
[workspace]