mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
35 lines
882 B
TOML
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"]
|