-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathCargo.toml
45 lines (35 loc) · 1.09 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
[package]
name = "gluon_vm"
version = "0.5.0" # GLUON
authors = ["Markus <marwes91@gmail.com>"]
license = "MIT"
description = "The virtual machine for executing the gluon programming language"
repository = "https://github.com/gluon-lang/gluon"
documentation = "https://docs.rs/gluon"
build = "build.rs"
[dependencies]
env_logger = { version = "0.3.4", optional = true }
frunk_core = "0.0.17"
log = "0.3.6"
quick-error = "1.1.0"
mopa = "0.2.2"
collect-mac = "0.1.0"
pretty = "0.3.1"
bitflags = "0.7.0"
itertools = "0.6.0"
futures = "0.1.0"
typed-arena = "1.2.0"
serde = { version = "1.0.0", optional = true }
smallvec = "0.2.1"
gluon_base = { path = "../base", version = "0.5.0" } # GLUON
gluon_check = { path = "../check", version = "0.5.0" } # GLUON
gluon_parser = { path = "../parser", version = "0.5.0", optional = true } # GLUON
[build-dependencies]
lalrpop = { version = "0.13.1", optional = true }
[dev-dependencies]
gluon = { path = "..", version = "0.5.0" } # GLUON
lalrpop-util = "0.13.1"
regex = "0.2.0"
serde_derive = "1.0.0"
[features]
test = ["env_logger", "lalrpop", "gluon_parser", "serde"]