-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for crates.io release (#365)
* Prepare for crates.io release * Don't use workspace keys in demo-prover
- Loading branch information
1 parent
9e3585f
commit 5c1c5c0
Showing
53 changed files
with
245 additions
and
109 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 |
---|---|---|
|
@@ -11,11 +11,11 @@ members = [ | |
"examples/demo-nft-module", | ||
"full-node/db/sov-db", | ||
|
||
"module-system/sov-default-stf", | ||
"module-system/sov-modules-stf-template", | ||
"module-system/sov-modules-macros", | ||
"module-system/sov-state", | ||
"module-system/sov-modules-api", | ||
"module-system/utils/first-read-last-write-cache", | ||
"module-system/utils/sov-first-read-last-write-cache", | ||
"module-system/module-implementations/sov-accounts", | ||
"module-system/module-implementations/sov-bank", | ||
"module-system/module-implementations/sov-prover-incentives", | ||
|
@@ -32,16 +32,16 @@ exclude = [ | |
[workspace.package] | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Sovereign Labs <[email protected]>"] | ||
homepage = "sovereign.xyz" | ||
publish = false | ||
repository = "https://github.com/sovereign-labs/sovereign" | ||
repository = "https://github.com/sovereign-labs/sovereign-sdk" | ||
rust-version = "1.66" | ||
|
||
[workspace.dependencies] | ||
# Dependencies maintained by sovereign | ||
jmt = { git = "https://github.com/penumbra-zone/jmt.git", rev = "3ca60665bee78549b37bab5ec461d108dada874d", default-features = false } | ||
jmt = "0.6.0" | ||
|
||
# External dependencies | ||
anyhow = "1.0.68" | ||
|
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
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
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
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,7 +1,7 @@ | ||
[package] | ||
name = "const-rollup-config" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Sovereign Labs <[email protected]>"] | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
authors = { workspace = true } | ||
homepage = "sovereign.xyz" | ||
publish = false |
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,8 +1,9 @@ | ||
[package] | ||
name = "demo-nft-module" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Sovereign Labs <[email protected]>"] | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
authors = { workspace = true } | ||
license = { workspace = true } | ||
homepage = "sovereign.xyz" | ||
publish = false | ||
|
||
|
@@ -26,4 +27,4 @@ sov-rollup-interface = { path = "../../rollup-interface" } | |
[features] | ||
default = ["native"] | ||
serde = ["dep:serde", "dep:serde_json"] | ||
native = ["serde", "sov-state/native", "sov-modules-api/native"] | ||
native = ["serde", "sov-state/native", "sov-modules-api/native"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,9 +1,9 @@ | ||
[package] | ||
name = "sov-demo-rollup" | ||
version = "0.1.0" | ||
edition = "2021" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
resolver = "2" | ||
authors = ["Sovereign Labs <[email protected]>"] | ||
authors = { workspace = true } | ||
homepage = "sovereign.xyz" | ||
publish = false | ||
|
||
|
@@ -31,7 +31,7 @@ demo-stf = { path = "../demo-stf", features = ["native"] } | |
sov-rollup-interface = { path = "../../rollup-interface" } | ||
sov-db = { path = "../../full-node/db/sov-db" } | ||
risc0-adapter = { path = "../../adapters/risc0" } | ||
sov-default-stf = { path = "../../module-system/sov-default-stf" } | ||
sov-modules-stf-template = { path = "../../module-system/sov-modules-stf-template" } | ||
|
||
sov-bank = { path = "../../module-system/module-implementations/sov-bank", default-features = false } | ||
sov-election = { path = "../../module-system/module-implementations/examples/sov-election", default-features = false } | ||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "demo-simple-stf" | ||
version = "0.1.0" | ||
edition = "2021" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
resolver = "2" | ||
authors = ["Sovereign Labs <[email protected]>"] | ||
authors = { workspace = true } | ||
homepage = "sovereign.xyz" | ||
publish = false | ||
|
||
|
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 @@ | ||
src/bank_cmd/test_data |
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,9 +1,9 @@ | ||
[package] | ||
name = "demo-stf" | ||
version = "0.1.0" | ||
edition = "2021" | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
resolver = "2" | ||
authors = ["Sovereign Labs <[email protected]>"] | ||
authors = { workspace = true } | ||
homepage = "sovereign.xyz" | ||
publish = false | ||
|
||
|
@@ -30,7 +30,7 @@ sov-rollup-interface = { path = "../../rollup-interface" } | |
sov-election = { path = "../../module-system/module-implementations/examples/sov-election", default-features = false } | ||
sov-sequencer-registry = { path = "../../module-system/module-implementations/sov-sequencer-registry", default-features = false } | ||
sov-bank = { path = "../../module-system/module-implementations/sov-bank", default-features = false } | ||
sov-default-stf = { path = "../../module-system/sov-default-stf" } # no features available | ||
sov-modules-stf-template = { path = "../../module-system/sov-modules-stf-template" } # no features available | ||
sov-value-setter = { path = "../../module-system/module-implementations/examples/sov-value-setter", default-features = false } | ||
sov-accounts = { path = "../../module-system/module-implementations/sov-accounts", default-features = false } | ||
sov-state = { path = "../../module-system/sov-state", default-features = false } | ||
|
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
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
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
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
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
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
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
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
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
12 changes: 10 additions & 2 deletions
12
module-system/module-implementations/examples/sov-election/Cargo.toml
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
Oops, something went wrong.