Files
powdr/examples/fibonacci/Cargo.toml
Lucas Clemente Vella 0ed9db7fb6 Fix lint on log calls. (#2589)
Log crate now has clippy enabled for its arguments
2025-03-25 18:46:26 +00:00

19 lines
287 B
TOML

[package]
name = "fibonacci"
version = "0.1.0"
edition = "2021"
[features]
default = []
simd = ["powdr/plonky3-simd"]
[dependencies]
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3", features = [
"plonky3",
] }
env_logger = "0.10.2"
log = "0.4.27"
[workspace]