forked from gluon-lang/gluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (39 loc) · 1.25 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
[package]
name = "gluon"
version = "0.1.3"
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"
[workspace]
members = ["c-api"]
[lib]
name = "gluon"
path = "src/lib.rs"
[[bin]]
name = "repl"
path = "src/main.rs"
[dependencies]
clap = "2.2.5"
compiletest_rs = { version = "0.2", optional = true }
env_logger = { version = "0.3.4", optional = true }
lazy_static = { version = "0.2.0", optional = true }
log = "0.3.6"
quick-error = "1.0.0"
rustyline = { git = "https://github.com/kkawakam/rustyline", rev = "d1ca6b92432f4ce6acbf20be6b90a328463a9f9d", optional = true }
gluon_base = { path = "base", version = "0.1.3" }
gluon_check = { path = "check", version = "0.1.3" }
gluon_parser = { path = "parser", version = "0.1.2" }
gluon_vm = { path = "vm", version = "0.1.2" }
[build-dependencies]
skeptic = "0.6"
[dev-dependencies]
skeptic = "0.6"
[features]
default = ["repl"]
repl = ["env_logger", "lazy_static", "rustyline"]
test = ["gluon_vm/test", "gluon_check/test", "gluon_parser/test", "repl"]
nightly = ["compiletest_rs"]