mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-01-08 21:58:00 -05:00
Run benchmarks in PRs, fail and warn on the PR if we got more than 20% slower, add benchmark results to https://docs.powdr.org/dev/bench/
33 lines
710 B
TOML
33 lines
710 B
TOML
[package]
|
|
name = "powdr-pil-analyzer"
|
|
description = "powdr-PIL compiler and analyzer"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
powdr-ast.workspace = true
|
|
powdr-number.workspace = true
|
|
powdr-parser.workspace = true
|
|
powdr-parser-util.workspace = true
|
|
lazy_static = "1.4.0"
|
|
|
|
itertools = "0.13"
|
|
num-traits = "0.2.15"
|
|
|
|
[dev-dependencies]
|
|
test-log = "0.2.12"
|
|
env_logger = "0.10.0"
|
|
pretty_assertions = "1.4.0"
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
development = ["env_logger"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
bench = false # See https://github.com/bheisler/criterion.rs/issues/458
|