-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 695 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 695 Bytes
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
[package]
name = "iridium"
version = "0.0.33"
authors = ["Fletcher Haynes <fletcher@subnetzero.io>"]
description = "A resilient VM for the Palladium language"
license = "MIT"
homepage = "https://iridium.rs"
repository = "https://gitlab.com/subnetzero/iridium"
[dependencies]
nom = "^4.0"
clap = { version = "2.32", features = ["yaml"] }
log = "0.4"
env_logger = "0.5.13"
byteorder = "1"
uuid = { version = "0.7", features = ["v4"] }
chrono = "0.4"
num_cpus = "1.0"
bincode = "1.0.1"
serde = "1.0.80"
serde_derive = "1.0.80"
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[[bin]]
name = "iridium"
[dev-dependencies]
criterion = "0.2"
[[bench]]
name = "iridium"
harness = false