-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
44 lines (35 loc) · 892 Bytes
/
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
[package]
name = "terminus"
version = "0.1.0"
authors = ["shady831213 <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "terminus"
crate-type = ["rlib","staticlib", "cdylib"]
[dependencies]
terminus-spaceport={git = "https://github.com/shady831213/terminus_spaceport"}
terminus-vault={git = "https://github.com/shady831213/terminus_vault"}
paste = "1"
linkme = "0.1"
xmas-elf = "0.7.0"
num_enum = "0.4.3"
num = "0.2.1"
simple-soft-float = "0.1.0"
clap = "2"
[dev-dependencies]
device_tree = "1.1.0"
[[example]]
name = "riscv_tests"
path = "top_tests/riscv_tests.rs"
[[example]]
name = "htif_test"
path = "top_tests/htif_test.rs"
[[bench]]
name = "decode_bench"
path = "top_tests/decode_bench.rs"
[features]
no-inline = []
sdl=["terminus-spaceport/sdl2"]
[profile.release]
lto = true