63 lines
1.3 KiB
TOML
63 lines
1.3 KiB
TOML
[package]
|
|
name = "opentally"
|
|
version = "0.1.0"
|
|
authors = ["Lee Yingtong Li <runassudo@yingtongli.me>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["lib", "cdylib"]
|
|
|
|
[features]
|
|
default = ["wasm"]
|
|
wasm = [] # Build default wasm bindings
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.44"
|
|
csv = "1.1.6"
|
|
derive_builder = "0.10.2"
|
|
derive_more = "0.99.14"
|
|
git-version = "0.3.4"
|
|
nohash-hasher = "0.2.0"
|
|
ibig = "0.3.2"
|
|
itertools = "0.10.1"
|
|
ndarray = "0.15.3"
|
|
num-traits = "0.2"
|
|
predicates = "1.0.8"
|
|
sha2 = "0.9.5"
|
|
wasm-bindgen = "0.2.81"
|
|
|
|
# Only for WebAssembly - include here for syntax highlighting
|
|
#[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_error_panic_hook = "0.1.6"
|
|
js-sys = "0.3.51"
|
|
html-escape = "0.2.9"
|
|
num-bigint = "0.4.0"
|
|
num-rational = "0.4.0"
|
|
paste = "1.0.5"
|
|
|
|
# For tests/CLI only
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
assert_cmd = "1.0.5"
|
|
flate2 = "1.0"
|
|
prettytable-rs = "0.8.0"
|
|
rkyv = "0.7.15"
|
|
utf8-chars = "1.0.2"
|
|
xmltree = "0.10.3"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.clap]
|
|
version = "3.2.5"
|
|
default-features = false
|
|
features = ["std", "derive"]
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rug]
|
|
version = "1.12"
|
|
default-features = false
|
|
features = ["integer", "rational", "float"]
|
|
|
|
[profile.test]
|
|
opt-level = 3
|
|
|
|
[profile.perf]
|
|
inherits = "release"
|
|
debug = true
|