2021-05-28 19:58:40 +10:00
|
|
|
[package]
|
|
|
|
name = "opentally"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Lee Yingtong Li <runassudo@yingtongli.me>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2021-05-30 18:28:39 +10:00
|
|
|
[lib]
|
|
|
|
crate-type = ["lib", "cdylib"]
|
|
|
|
|
2021-05-28 19:58:40 +10:00
|
|
|
[dependencies]
|
2021-06-04 22:05:48 +10:00
|
|
|
derive_more = "0.99.14"
|
2021-05-28 22:37:07 +10:00
|
|
|
git-version = "0.3.4"
|
2021-06-04 22:05:48 +10:00
|
|
|
ibig = "0.3.2"
|
2021-06-11 21:22:28 +10:00
|
|
|
itertools = "0.10.1"
|
2021-06-27 17:44:30 +10:00
|
|
|
ndarray = "0.15.3"
|
2021-06-13 15:03:10 +10:00
|
|
|
predicates = "1.0.8"
|
2021-05-28 19:58:40 +10:00
|
|
|
num-traits = "0.2"
|
2021-06-13 03:15:15 +10:00
|
|
|
sha2 = "0.9.5"
|
2021-05-30 18:28:39 +10:00
|
|
|
wasm-bindgen = "0.2.74"
|
|
|
|
|
|
|
|
# Only for WebAssembly - include here for syntax highlighting
|
2021-05-30 23:00:28 +10:00
|
|
|
#[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2021-05-30 18:28:39 +10:00
|
|
|
console_error_panic_hook = "0.1.6"
|
2021-06-02 22:46:36 +10:00
|
|
|
js-sys = "0.3.51"
|
2021-05-30 23:00:28 +10:00
|
|
|
num-bigint = "0.4.0"
|
|
|
|
num-rational = "0.4.0"
|
|
|
|
paste = "1.0.5"
|
2021-05-30 18:28:39 +10:00
|
|
|
|
2021-06-12 15:37:41 +10:00
|
|
|
# For tests
|
2021-05-30 18:28:39 +10:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
2021-06-12 15:37:41 +10:00
|
|
|
assert_cmd = "1.0.5"
|
2021-05-30 18:28:39 +10:00
|
|
|
csv = "1.1.6"
|
|
|
|
flate2 = "1.0"
|
2021-06-10 15:47:09 +10:00
|
|
|
xmltree = "0.10.3"
|
2021-05-28 19:58:40 +10:00
|
|
|
|
2021-05-30 18:28:39 +10:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rug]
|
2021-05-28 19:58:40 +10:00
|
|
|
version = "1.12"
|
|
|
|
default-features = false
|
|
|
|
features = ["integer", "rational", "float"]
|
2021-05-28 20:42:01 +10:00
|
|
|
|
2021-05-30 18:28:39 +10:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.clap]
|
2021-05-29 23:25:05 +10:00
|
|
|
#version = "3.0.0-beta.2" # Bug 2279
|
|
|
|
git = "https://github.com/clap-rs/clap"
|
|
|
|
branch = "master"
|
2021-05-28 20:42:01 +10:00
|
|
|
default-features = false
|
|
|
|
features = ["std", "derive"]
|
2021-05-30 03:50:19 +10:00
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 3
|