mirror of
https://github.com/urbit/ares.git
synced 2024-11-23 00:25:49 +03:00
56 lines
1.3 KiB
TOML
56 lines
1.3 KiB
TOML
[package]
|
|
name = "ares"
|
|
version = "0.1.0"
|
|
authors = ["Edward Amsden <edward@tlon.io>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
# [patch.crates-io]
|
|
# ibig = { path = "../ibig-rs" }
|
|
|
|
# Please keep these alphabetized
|
|
[dependencies]
|
|
ares_macros = { path = "../ares_macros" }
|
|
ares_pma = { path = "../ares_pma" }
|
|
assert_no_alloc = "1.1.2"
|
|
# use this when debugging requires allocation (e.g. eprintln)
|
|
# assert_no_alloc = {version="1.1.2", features=["warn_debug"]}
|
|
bitvec = "1.0.0"
|
|
criterion = "0.4"
|
|
either = "1.9.0"
|
|
ibig = { path = "../ibig-rs" }
|
|
intmap = "1.1.0"
|
|
json = "0.12.4"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2.126"
|
|
memmap = "0.7.0"
|
|
murmur3 = { git = "https://github.com/tloncorp/murmur3", rev = "7878a0f" }
|
|
num-derive = "0.3"
|
|
num-traits = "0.2"
|
|
signal-hook = "0.3"
|
|
static_assertions = "1.1.0"
|
|
urcrypt-sys = "0.1.1"
|
|
|
|
[build-dependencies]
|
|
autotools = "0.2.6"
|
|
cc = "1.0.79"
|
|
|
|
[[bin]]
|
|
name = "ares"
|
|
path = "src/main.rs"
|
|
|
|
[profile.dev]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
# run with e.g. 'cargo build --features check_forwarding,check_acyclic'
|
|
[features]
|
|
check_all = [ "check_acyclic", "check_forwarding", "check_junior" ]
|
|
check_acyclic = []
|
|
check_forwarding = []
|
|
check_junior = []
|
|
sham_hints = []
|