Files
powdr/executor/Cargo.toml
Georg Wiese fbc8c8c927 Introduce AlgebraicVariable (#1755)
(First 4 commits of #1650)

This PR prepares witness generation for scalar publics (#1756). Scalar
publics are similar to cells in the trace, but are global (i.e.,
independent on the row number).

With this PR, affine expressions use a new `AlgebraicVariable` enum,
that can be either a column reference (`&'a AlgebraicReference`, which
was used previously), or a reference to a public.
2024-09-23 14:44:04 +00:00

36 lines
903 B
TOML

[package]
name = "powdr-executor"
description = "powdr executor for powdr-PIL code, also known as 'witness generator' or 'witgen'"
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
powdr-pil-analyzer.workspace = true
itertools = "0.13"
log = { version = "0.4.17" }
rayon = "1.7.0"
bit-vec = "0.6.3"
num-traits = "0.2.15"
derive_more = "0.99.17"
lazy_static = "1.4.0"
indicatif = "0.17.7"
serde = { version = "1.0", default-features = false, features = ["alloc", "derive", "rc"] }
[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.clippy]
uninlined_format_args = "deny"