Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the crate generated by forge bind depend on alloy through crates.io instead of git #10197

Closed
guidanoli opened this issue Mar 28, 2025 · 7 comments
Labels
T-feature Type: feature T-needs-triage Type: this issue needs to be labelled

Comments

@guidanoli
Copy link

Component

Forge

Describe the feature you would like

Currently, when you run forge bind, it generates a crate (under out/bindings by default).
Below is the generated Cargo.toml file:

[package]
name = "foundry-contracts"
version = "0.1.0"
edition = "2021"

[dependencies] 
alloy = { git = "https://github.com/alloy-rs/alloy", features = ["sol-types", "contract"] }

This creates has some problem for projects that try to publish it to crates.io:

This issue is about the second item.
One solution is to edit this Cargo.toml with tomlq, but ideally we would like forge to generate the crate in a format that can already be published to crates.io without any extra intervention.

Below is the desired diff:

7c7
< alloy = { git = "https://github.com/alloy-rs/alloy", features = ["sol-types", "contract"] }
---
> alloy = { version = "0.12.4", features = ["sol-types", "contract"] }

Do note that we specified the version of alloy.
If not specified, Forge could specify one by default.

Additional context

No response

@guidanoli guidanoli added T-feature Type: feature T-needs-triage Type: this issue needs to be labelled labels Mar 28, 2025
@github-project-automation github-project-automation bot moved this to Todo in Foundry Mar 28, 2025
@mattsse
Copy link
Member

mattsse commented Mar 28, 2025

@Soubhik-10 this is also similar

@Soubhik-10
Copy link
Contributor

@Soubhik-10 this is also similar

Will try this too

@zerosnacks
Copy link
Member

zerosnacks commented Mar 28, 2025

Hmm.. this PR #9861 modified the behavior of --alloy-version to install the crate via crates.io and introduced --alloy-rev as a way to install by tag or branch via Github

What version of Foundry are you using @guidanoli?

@guidanoli
Copy link
Author

I'm using the latest stable release.

@zerosnacks
Copy link
Member

zerosnacks commented Mar 28, 2025

@guidanoli would you mind trying this out on the latest nightly? foundryup -i nightly / foundryup --use nightly

@guidanoli
Copy link
Author

Can confirm this works on the latest nightly, but when will this feature be available on a stable release?

@zerosnacks
Copy link
Member

zerosnacks commented Mar 28, 2025

We are working towards a 1.1 release that we will hopefully be able to release a pre-release of early next month.

For now marking this as resolved - thanks!

@github-project-automation github-project-automation bot moved this from Todo to Done in Foundry Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-feature Type: feature T-needs-triage Type: this issue needs to be labelled
Projects
Status: Done
Development

No branches or pull requests

4 participants