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
1 change: 0 additions & 1 deletion .github/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ ignore:
- vm/src/types/errors
- hint_accountant
- vm/src/hint_processor/cairo-1-hint-processor # TODO: Remove this line
- ./deps
4 changes: 0 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ jobs:
uses: actions/checkout@v2
- name: Install stable toolchain
uses: dtolnay/[email protected]
- name: Publish crate cairo-take_until_unbalanced
env:
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish --token ${CRATES_TOKEN} --all-features --manifest-path ./deps/parse-hyperlinks/Cargo.toml
- name: Publish crate cairo-felt
env:
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
Expand Down
9 changes: 0 additions & 9 deletions Cargo.lock

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

9 changes: 0 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ members = [
"felt",
"vm",
"hint_accountant",
"./deps/parse-hyperlinks",
]
exclude = ["ensure-no_std"]

Expand Down Expand Up @@ -47,14 +46,6 @@ anyhow = { version = "1.0.69", default-features = false }
thiserror = { version = "1.0.32", default-features = false }
thiserror-no-std = { version = "2.0.2", default-features = false }

# This crate has only one function `take_until_unbalanced` that is
# very useful for our parsing purposes:
# https://stackoverflow.com/questions/70630556/parse-allowing-nested-parentheses-in-nom
# There is a proposal for extending nom::delimited to use this function:
# https://github.com/Geal/nom/issues/1253
parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.32.0", default-features = false, features = [
"alloc",
] }
felt = { package = "cairo-felt", path = "./felt", version = "0.8.0", default-features = false, features = [
"alloc",
] }
Expand Down
3 changes: 0 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
- `cairo-vm-cli/Cargo.toml`: update the version string and also the
`cairo-vm` dependency version to match the above.
- `felt/Cargo.toml`: update the version string.
- `deps/parse-hyperlinks/Cargo.toml`: this vendored dependency needs its
version bumped, but does not need to match the other crate versions.
- [Here](https://github.com/lambdaclass/cairo-rs/pull/1257/files) is an
example pull request with these changes.
- [ ] Run `cargo update` and `git add Cargo.lock`
Expand All @@ -36,7 +34,6 @@
versions.
- [cairo-vm](https://crates.io/crates/cairo-vm)
- [cairo-felt](https://crates.io/crates/cairo-felt)
- [cairo-take-until-unbalanced](https://crates.io/crates/cairo-take_until_unbalanced)
- [ ] Create a release in Github.
- Select the recently created tag.
- Set the title to the version string.
Expand Down
32 changes: 0 additions & 32 deletions deps/parse-hyperlinks/Cargo.lock

This file was deleted.

26 changes: 0 additions & 26 deletions deps/parse-hyperlinks/Cargo.toml

This file was deleted.

1 change: 0 additions & 1 deletion deps/parse-hyperlinks/LICENSE

This file was deleted.

27 changes: 0 additions & 27 deletions deps/parse-hyperlinks/README.md

This file was deleted.

173 changes: 0 additions & 173 deletions deps/parse-hyperlinks/src/lib.rs

This file was deleted.

8 changes: 0 additions & 8 deletions vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ std = [
"bincode/std",
"anyhow/std",
"starknet-crypto/std",
"parse-hyperlinks/std",
"felt/std",
"dep:num-prime",
]
Expand Down Expand Up @@ -59,13 +58,6 @@ thiserror-no-std = { workspace = true }

# only for std
num-prime = { version = "0.4.3", features = ["big-int"], optional = true }

# This crate has only one function `take_until_unbalanced` that is
# very useful for our parsing purposes:
# https://stackoverflow.com/questions/70630556/parse-allowing-nested-parentheses-in-nom
# There is a proposal for extending nom::delimited to use this function:
# https://github.com/Geal/nom/issues/1253
parse-hyperlinks = { workspace = true }
felt = { workspace = true }
bitvec = { workspace = true }

Expand Down
Loading