-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (47 loc) · 1.27 KB
/
Copy pathCargo.toml
File metadata and controls
56 lines (47 loc) · 1.27 KB
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
[package]
name = "simmerv"
version = "0.3.0"
edition = "2024"
description = "RISC-V emulator written in Rust"
authors = ["Takahiro <hogehoge@gachapin.jp>", "Tommy Thorn <tommy-github2@thorn.ws>"]
license = "MIT"
homepage = "https://github.com/tommythorn/simmerv"
repository = "https://github.com/tommythorn/simmerv"
exclude = [
"linux/*",
"screenshots/*",
"wasm/*"
]
[workspace]
resolver = "3"
members = [".", "sim", "gendecoder", "wasm", "cosim"]
default-members = ["sim"]
[lints.clippy]
pedantic = { level = "warn", priority = -2 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
unreadable-literal = "allow"
[features]
paranoid-tlb = []
[badges]
travis-ci = { repository = "tommythorn/simmerv" }
[dependencies]
brotli = { version = "7", default-features = false, features = ["std"] }
fnv = "1.0.7"
num-traits = "*"
num-derive = "*"
wasm-timer = "0.2.5"
log = "0.4.26"
xmas-elf = "0.10.0"
anyhow = "1.0.98"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
libc = "0.2"
[build-dependencies]
cc = "1"
[profile.release]
debug = true
[dev-dependencies.cargo-husky]
version = "1"
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"]