-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (31 loc) · 935 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
36
37
[package]
name = "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.155"
nalgebra = "0.33.0"
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 = "2.0.0"
clap = { version = "4.5.7", features = ["derive"] }
env_logger = "0.11.3"
log = "0.4.22"
[dev-dependencies]
approx = "0.5.1"
tempfile = "3.10.0"
[[bin]]
name = "cart"
path = "src/bin/cart.rs"
[build-dependencies]
git2 = { version = "0.18.2", optional = true }
[features]
vers = ["dep:git2"]