forked from gluon-lang/gluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (39 loc) · 1.23 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
[package]
name = "gluon"
version = "0.2.2"
authors = ["Markus <marwes91@gmail.com>"]
build = "build.rs"
license = "MIT"
description = "A static, type inferred programming language for application embedding"
repository = "https://github.com/gluon-lang/gluon"
documentation = "https://docs.rs/gluon"
readme = "README.md"
[workspace]
members = ["c-api"]
[lib]
name = "gluon"
path = "src/lib.rs"
[[bin]]
name = "repl"
path = "src/main.rs"
[dependencies]
gluon_base = { path = "base", version = "0.2.2" }
gluon_check = { path = "check", version = "0.2.2" }
gluon_parser = { path = "parser", version = "0.2.2" }
gluon_vm = { path = "vm", version = "0.2.2" }
clap = "2.2.5"
log = "0.3.6"
quick-error = "1.0.0"
env_logger = { version = "0.3.4", optional = true }
lazy_static = { version = "0.2.0", optional = true }
rustyline = { version = "1.0.0", optional = true }
# Crates used in testing Testing
compiletest_rs = { version = "0.2", optional = true }
skeptic = { version = "0.6", optional = true }
[build-dependencies]
skeptic = { version = "0.6", optional = true }
[features]
default = ["repl"]
repl = ["env_logger", "lazy_static", "rustyline"]
test = ["gluon_vm/test", "gluon_check/test", "gluon_parser/test", "repl"]
nightly = ["compiletest_rs"]