mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-01-10 13:18:04 -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/
38 lines
809 B
TOML
38 lines
809 B
TOML
[package]
|
|
name = "powdr-parser"
|
|
build = "build.rs"
|
|
description = "powdr parser"
|
|
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-util.workspace = true
|
|
|
|
lazy_static = "1.4.0"
|
|
lalrpop-util = {version = "^0.19", features = ["lexer"]}
|
|
num-traits = "0.2.15"
|
|
derive_more = "0.99.17"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.4.0"
|
|
test-log = "0.2.12"
|
|
env_logger = "0.10.0"
|
|
walkdir = "2.4.0"
|
|
similar = "2.4"
|
|
|
|
[build-dependencies]
|
|
lalrpop = "^0.19"
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
development = ["env_logger"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
bench = false # See https://github.com/bheisler/criterion.rs/issues/458 |