Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#### Upcoming Changes

* chore: remove unused dependencies [#2111](https://github.com/lambdaclass/cairo-vm/pull/2111)

* chore: update Rust required version to 1.87.0 [#2100](https://github.com/lambdaclass/cairo-vm/pull/2100)

#### [3.0.0-rc.1] - 2025-05-08
Expand Down
40 changes: 0 additions & 40 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ thiserror = { version = "2", default-features = false }
bitvec = { version = "1", default-features = false, features = ["alloc"] }

# Dependencies for cairo-1-hints feature
cairo-lang-starknet = { version = "2.12.0-dev.0", default-features = false }
cairo-lang-casm = { version = "2.12.0-dev.0", default-features = false }

cairo-lang-starknet-classes = { version = "2.12.0-dev.0", default-features = false }
Expand Down
1 change: 0 additions & 1 deletion cairo-vm-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ cairo-vm = { workspace = true, features = ["std", "clap"] }
cairo-vm-tracer = { workspace = true, optional = true }
clap = { version = "4.3.10", features = ["derive"] }
mimalloc = { version = "0.1.37", default-features = false, optional = true }
nom = "7"
thiserror = { workspace = true, features = ["std"]}
bincode.workspace = true

Expand Down
1 change: 0 additions & 1 deletion cairo-vm-tracer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ num-traits = { workspace = true }
axum = "0.6.18"
tokio = {version = "1.28.2", features = ["rt", "macros","rt-multi-thread"]}
serde = { workspace = true }
tower = { version = "0.4.13", features = ["util"] }
tower-http = { version = "0.4.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
Expand Down
6 changes: 0 additions & 6 deletions cairo1-run/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ cairo-vm = { workspace = true, features = ["std", "cairo-1-hints", "clap"] }
serde_json = { workspace = true }

cairo-lang-sierra-type-size = { version = "2.12.0-dev.0", default-features = false }
cairo-lang-sierra-ap-change = { version = "2.12.0-dev.0", default-features = false }
cairo-lang-sierra-gas = { version = "2.12.0-dev.0", default-features = false }
cairo-lang-starknet-classes.workspace = true
cairo-lang-sierra-to-casm.workspace = true
cairo-lang-compiler.workspace = true
cairo-lang-sierra.workspace = true
Expand All @@ -27,11 +24,8 @@ thiserror = { workspace = true, features = ["std"] }
bincode.workspace = true
assert_matches = "1.5.0"
rstest = "0.17.0"
mimalloc = { version = "0.1.37", default-features = false, optional = true }
num-traits = { version = "0.2", default-features = false }
num-bigint.workspace = true

[features]
default = ["with_mimalloc"]
with_mimalloc = ["dep:mimalloc"]
mod_builtin = ["cairo-vm/mod_builtin"]
4 changes: 0 additions & 4 deletions examples/wasm-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ crate-type = ["cdylib", "rlib"]
default = ["console_error_panic_hook"]

[dependencies]
serde_json.workspace = true
wasm-bindgen = "0.2.100"

# The `console_error_panic_hook` crate provides better debugging of panics by
Expand All @@ -26,6 +25,3 @@ wasm-bindgen = "0.2.100"
console_error_panic_hook = { version = "0.1.6", optional = true }

cairo-vm = { workspace = true }

[dev-dependencies]
wasm-bindgen-test = "0.3.50"
3 changes: 0 additions & 3 deletions vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ std = [
"dep:zip",
]
cairo-1-hints = [
"dep:cairo-lang-starknet",
"dep:cairo-lang-casm",
"dep:cairo-lang-starknet-classes",
"dep:ark-ff",
Expand All @@ -46,7 +45,6 @@ num-traits = { workspace = true }
num-integer = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
hex = { workspace = true }
bincode = { workspace = true }
starknet-crypto = { workspace = true }
sha3 = { workspace = true }
Expand All @@ -67,7 +65,6 @@ num-prime = { version = "0.4.3", features = ["big-int"], optional = true }
bitvec = { workspace = true }

# Dependencies for cairo-1-hints feature
cairo-lang-starknet = { workspace = true, optional = true }
cairo-lang-starknet-classes = { workspace = true, optional = true }
cairo-lang-casm = { workspace = true, optional = true }

Expand Down
Loading