blob: 5db54811c2f5534920f844f4f2b65881bdc8dcd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "candelabra-cli"
version = "0.1.0"
edition = "2021"
default-run = "candelabra-cli"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = { workspace = true }
env_logger = { workspace = true }
primrose = { path = "../primrose" }
candelabra-benchmarker = { path = "../benchmarker" }
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
camino = "1.1.6"
cargo_metadata = "0.18.1"
argh = "0.1.12"
glob = "0.3.1"
tempfile = "3"
nalgebra = "0.32.3"
|