-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
61 lines (54 loc) · 1.61 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
[package]
name = "tin"
description = "tin: a statically structurally typed embeddable programming language"
license = "MIT"
version = "0.3.0"
authors = ["David Flemström <[email protected]>"]
repository = "https://github.com/dflemstr/tin"
edition = "2018"
[build-dependencies]
lalrpop = "0.16.2"
failure = "0.1.5"
regex = "1.1.0"
walkdir = "2.2.7"
[dependencies]
cranelift = "0.26.0"
cranelift-module = "0.26.0"
cranelift-simplejit = "0.26.0"
dot = "0.1.4"
env_logger = "0.6.0"
failure = "0.1.5"
lalrpop-util = "0.16.2"
log = "0.4.6"
regex = "1.1.0"
specs = { version = "0.14.3", default_features = false }
specs-derive = "0.4.0"
specs-visitor-derive = { version = "0.3.0", path = "specs-visitor-derive" }
specs-visitor = { version = "0.3.0", path = "specs-visitor", default_features = false }
pretty_env_logger = "0.3.0"
structopt = "0.2.14"
lazy_static = "1.2.0"
byteorder = "1.2.7"
rayon = { version = "1.0.3", optional = true }
itertools = "0.8.0"
codespan = "0.2.0"
codespan-reporting = "0.2.0"
enum-primitive-derive = "0.1.2"
num-traits = "0.2.6"
[features]
default = ["parallel"]
nightly = ["specs/nightly"]
parallel = ["rayon", "specs/parallel", "specs-visitor/parallel"]
test-render-graphs = []
[profile.release]
debug = true
lto = true
codegen-units = 1
[workspace]
members = ["specs-visitor", "specs-visitor-derive", "tin-fuzz-target"]
[dev-dependencies]
pretty_assertions = "0.5.1"
[dev-dependencies.cargo-husky]
git = "https://github.com/dflemstr/cargo-husky.git"
branch = "run-for-all"
features = ["prepush-hook", "precommit-hook", "run-for-all", "run-cargo-test", "run-cargo-check", "run-cargo-clippy", "run-cargo-fmt"]