Files
concrete/Cargo.toml
2022-03-25 14:27:02 +01:00

35 lines
882 B
TOML

[package]
name = "concrete-optimizer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[net]
git-fetch-with-cli = true
[dependencies]
concrete-commons = { git = "ssh://git@github.com/zama-ai/concrete_internal.git", branch = "fix/optimizer_compat" }
concrete-npe = { git = "ssh://git@github.com/zama-ai/concrete_internal.git", branch = "fix/optimizer_compat" }
statrs = "0.15.0"
[dev-dependencies]
approx = "0.5.1"
clap = { version = "3.1.2", features = ["derive"] }
rayon-cond = "0.2" # to avoid rayon code coloring
# pprof = { version = "0.4", features = ["flamegraph"] }
rayon = "1.5.1"
text-diff = "0.4.0"
[build-dependencies]
cbindgen = "0.20.0"
[lib]
crate-type= [
"staticlib", # concretecompiler
"lib", # rust
]
[[example]]
name = "v0_parameters"
crate-type= ["bin"]