-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (48 loc) · 1.18 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
[package]
name = "technetium-lang"
version = "0.0.1"
authors = ["Matt Torrence <[email protected]>"]
description = """
technetium is an interpreted scripting language made mostly for install, build,
and configuration scripts.
"""
documentation = "https://matthewtorrence.com/technetium"
homepage = "https://matthewtorrence.com/technetium"
repository = "https://github.com/Torrencem/technetium"
readme = "README.md"
edition = "2018"
[[bin]]
path = "crates/core/main.rs"
name = "tech"
[workspace]
members = [
"crates/lexer",
"crates/runtime",
"crates/compile",
"crates/mlrefcell",
]
[dependencies]
lalrpop-util = "0.18.1"
codespan = "0.9.3"
codespan-reporting = "0.9.2"
lazy_static = "1.4.0"
log = { features = ["std"], version = "0.4" }
whoami = "1.1.2"
sys-info = "0.6.1"
pretty_dtoa = "0.1.0"
parking_lot = "0.10.2"
num = "0.2.1"
stable_deref_trait = "1.1.1"
mlrefcell = { path = "crates/mlrefcell" }
lexer = { path = "crates/lexer" }
compile = { path = "crates/compile" }
runtime = { path = "crates/runtime" }
[dependencies.clap]
version = "2.33.0"
default-features = false
features = ["suggestions"]
[dev-dependencies]
assert_cmd = "1.0.1"
predicates = "1"
[profile.release]
lto = true