-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from starkware-libs/spr/main/1a9f43aa
fix: fix compilation by fixing crates structure
- Loading branch information
Showing
3 changed files
with
28 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
[workspace] | ||
# Using version 2 to avoid unifying features. For more info, read: | ||
# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2 | ||
resolver = "2" # Specify the resolver version that matches edition 2021 | ||
|
||
resolver = "2" | ||
members = ["crates/gateway"] | ||
|
||
[workspace.package] | ||
version = "0.0.0" | ||
edition = "2021" | ||
repository = "https://github.com/starkware-libs/mempool/" | ||
license = "Apache-2.0" | ||
|
||
[workspace.lints.rust] | ||
warnings = "deny" | ||
future-incompatible = "deny" | ||
nonstandard-style = "deny" | ||
rust-2018-idioms = "deny" | ||
unused = "deny" | ||
|
||
[workspace.lints.clippy] | ||
as_conversions = "deny" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
[package] | ||
name = "gateway" | ||
version = "0.1.0" | ||
edition = "2021" | ||
name = "starknet_gateway" | ||
version.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
|
||
[lints] | ||
workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|