Skip to content

Commit

Permalink
enable more corelib tests, like keccak ones
Browse files Browse the repository at this point in the history
  • Loading branch information
edg-l committed May 6, 2024
1 parent 6ff093c commit bc9820e
Show file tree
Hide file tree
Showing 10 changed files with 1,166 additions and 32 deletions.
195 changes: 187 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ required-features = ["build-cli"]

[features]
default = ["build-cli", "with-runtime"]
build-cli = ["dep:clap", "dep:tracing-subscriber", "dep:anyhow", "dep:cairo-lang-test-plugin", "dep:cairo-lang-runner", "dep:colored", "dep:cairo-felt"]
build-cli = ["dep:clap", "dep:tracing-subscriber", "dep:anyhow", "dep:cairo-lang-test-plugin",
"dep:cairo-lang-runner", "dep:colored", "dep:cairo-felt", "dep:keccak",
"dep:k256", "dep:p256", "dep:sec1"]
with-debug-utils = []
with-runtime = ["dep:cairo-native-runtime"]
with-serde = ["dep:serde"]
Expand Down Expand Up @@ -77,6 +79,10 @@ cairo-lang-runner = { version = "2.5.4", optional = true}
colored = { version = "2.1.0", optional = true }
# needed to interface with cairo-lang-*
cairo-felt = { version = "0.9.1", optional = true }
keccak = { version = "0.1.3", optional = true }
k256 = { version = "0.13.3", optional = true }
p256 = { version = "0.13.2", optional = true }
sec1 = { version = "0.7.3", optional = true }

[dev-dependencies]
cairo-felt = "0.9.1"
Expand Down
Loading

0 comments on commit bc9820e

Please sign in to comment.