-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (47 loc) · 1.01 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
[workspace]
members = [
"ast",
"ir",
"lineardb",
"engine",
"process",
"irdb",
"diags",
]
[package]
name = "brink"
version = "1.0.1"
license-file = "LICENSE.txt"
readme = "README.md"
homepage = "/~https://github.com/steveking-gh/brink"
repository = "/~https://github.com/steveking-gh/brink"
keywords = ["linker",
"cli",
"domain-specific-language",
"build"]
categories = ["development-tools::build-utils"]
authors = ["Steve King <sk@metrokings.com>"]
edition = "2018"
# See more keys and their definitions at
# https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = 'thin'
panic = 'unwind'
incremental = false
codegen-units = 16
rpath = false
[dependencies]
indextree = "4.3.1"
clap = { version = "2.33.0" }
fern = "0.6.0"
log = "0.4.11"
anyhow = "1.0.34"
process = { path = "./process" }
[dev-dependencies]
assert_cmd = "1.0.1"
predicates = "1.0.5"
serial_test = "0.5.1"