diff options
Diffstat (limited to 'src/crates/candelabra/Cargo.toml')
-rw-r--r-- | src/crates/candelabra/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/crates/candelabra/Cargo.toml b/src/crates/candelabra/Cargo.toml new file mode 100644 index 0000000..909e577 --- /dev/null +++ b/src/crates/candelabra/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "candelabra" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +log = { workspace = true } +primrose = { path = "../primrose" } +anyhow = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } +camino = "1.1.6" +cargo_metadata = "0.18.1" +glob = "0.3.1" +tempfile = "3" +nalgebra = "0.32.3" +polars = { version = "0.35.4", features = ["describe"] } |