forked from gluon-lang/gluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (54 loc) · 1.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "gluon"
version = "0.1.1"
authors = ["Markus <[email protected]>"]
build = "build.rs"
license = "MIT"
description = "A static, type inferred programming langauge for application embedding"
repository = "https://github.com/Marwes/gluon"
documentation = "https://marwes.github.io/gluon/gluon/index.html"
readme = "README.md"
[lib]
name = "gluon"
path = "src/lib.rs"
[[bin]]
name = "repl"
path = "src/main.rs"
[dependencies]
log = "0.3.6"
clap = "2.2.5"
quick-error = "1.0.0"
[dependencies.gluon_base]
path = "base"
version = "0.1.1"
[dependencies.gluon_parser]
path = "parser"
version = "0.1.1"
[dependencies.gluon_check]
path = "check"
version = "0.1.1"
[dependencies.gluon_vm]
path = "vm"
version = "0.1.1"
[dependencies.compiletest_rs]
version = "0.1.3"
optional = true
[dependencies.env_logger]
version = "0.3.3"
optional = true
[dependencies.linenoise-rust]
version = "0.2.0"
optional = true
[dependencies.lazy_static]
version = "0.2.0"
optional = true
[build-dependencies]
skeptic = "0.4"
[dev-dependencies]
skeptic = "0.4"
[features]
default = ["repl"]
repl = ["env_logger", "lazy_static", "linenoise-rust"]
test = ["gluon_vm/test", "gluon_check/test", "gluon_parser/test", "repl"]
nightly = ["compiletest_rs"]
test_nightly = ["test", "nightly"]