forked from ntBre/pbqff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (29 loc) · 903 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
[package]
name = "rust-pbqff"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
intder = { git = "https://github.com/ntBre/intder" }
libc = "0.2.153"
nalgebra = "0.32.3"
psqs = { git = "https://github.com/ntBre/psqs" }
rust-anpass = { git = "https://github.com/ntBre/rust-anpass" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
spectro = { git = "https://github.com/ntBre/spectro" }
symm = { git = "https://github.com/ntBre/symm" }
taylor = { git = "https://github.com/ntBre/taylor" }
toml = "0.8.10"
rustc-hash = "1.1.0"
clap = { version = "4.4.18", features = ["derive"] }
[dev-dependencies]
approx = "0.5.1"
tempfile = "3.9.0"
[[bin]]
name = "cart"
path = "src/bin/cart.rs"
[build-dependencies]
git2 = { version = "0.18.0", optional = true }
[features]
vers = ["dep:git2"]