forked from Sovereign-Labs/sovereign-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: Create workspace (Sovereign-Labs#22)
* Refactor: Create workspace
- Loading branch information
1 parent
dcfb4c1
commit e4ab8eb
Showing
35 changed files
with
31 additions
and
16 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,21 +1,15 @@ | ||
[package] | ||
name = "sovereign-sdk" | ||
version = "0.1.0" | ||
edition = "2021" | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"sdk" | ||
] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
[workspace.dependencies] | ||
# External dependencies | ||
anyhow = "1.0.68" | ||
borsh = { version = "0.10.0", features = ["rc"]} | ||
bytes = "1.2.1" | ||
proptest = "1.0.0" | ||
sha2 = "0.10.6" | ||
borsh = { version = "0.10.0", features = ["rc"]} | ||
|
||
anyhow = "1.0.68" | ||
thiserror = "1.0.38" | ||
|
||
# Proptest should be a dev-dependency, but those can't be optional | ||
proptest = { version = "1.0.0", optional = true } | ||
|
||
[features] | ||
fuzzing = ["proptest"] | ||
sync = [] |
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,21 @@ | ||
[package] | ||
name = "sovereign-sdk" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
bytes = { workspace = true } | ||
sha2 = { workspace = true } | ||
borsh = { workspace = true, features = ["rc"]} | ||
|
||
anyhow = { workspace = true } | ||
thiserror = { workspace = true } | ||
|
||
# Proptest should be a dev-dependency, but those can't be optional | ||
proptest = { workspace = true, optional = true } | ||
|
||
[features] | ||
fuzzing = ["proptest"] | ||
sync = [] |
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.