-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 895 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
45
46
47
48
49
[package]
name = "kcpu"
version = "0.1.0"
authors = ["Keeley Hoek <[email protected]>"]
edition = "2018"
default-run = "kcpu"
[profile.release]
opt-level = 3
lto = "thin"
# opt-level = 3
# lto = true
# codegen-units = 1
[features]
big_tests = []
[[bench]]
name = "suites"
harness = false
[dev-dependencies]
criterion = "0.3.2"
[dependencies]
bitflags = "1.2.1"
enum-map = "0.6.2"
static_assertions = "1.1.0"
num-traits = "0.2.11"
num-derive = "0.3.0"
once_cell = "1.4.0"
derive_more = "0.99.7"
bitintr = "0.3.0"
strum = "0.18.0"
strum_macros = "0.18.0"
structopt = "0.3.14"
itertools = "0.9.0"
ansi_term = "0.12.1"
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git" }
winit = "0.22.2"
futures = "0.3"
parking_lot = "0.10.2"
bytemuck = "1.2.0"
web-sys = "0.3.39"
wasm-bindgen-futures = "0.4.12"
console_error_panic_hook = "0.1.6"
console_log = "0.2.0"
anyhow = "1.0.31"
env_logger = "0.7.1"