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

feat: add no-std to sov-modules-api #1073

Closed
wants to merge 5 commits into from
Closed
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
7 changes: 7 additions & 0 deletions Cargo.lock

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

33 changes: 17 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,37 +59,38 @@ rust-version = "1.66"

[workspace.dependencies]
# Dependencies maintained by Sovereign
jmt = "0.8.0"
jmt = { version = "0.8.0", default-features = false }

# External dependencies
async-trait = "0.1.71"
anyhow = "1.0.68"
anyhow = { version = "1.0.68", default-features = false }
arbitrary = { version = "1.3.1", features = ["derive"] }
borsh = { version = "0.10.3", features = ["rc", "bytes"] }
borsh = { version = "0.10.3", default-features = false, features = ["rc", "bytes"] }
# TODO: Consider replacing this serialization format
# https://github.com/Sovereign-Labs/sovereign-sdk/issues/283
bincode = "1.3.3"
bcs = "0.1.5"
byteorder = "1.5.0"
bytes = "1.2.1"
byteorder = { version = "1.5.0", default-features = false }
bytes = { version = "1.2.1", default-features = false }
futures = "0.3"
hex = "0.4.3"
once_cell = "1.10.0"
hex = { version = "0.4.3", default-features = false, features = ["alloc", "serde"] }
once_cell = { version = "1.10.0", default-features = false, features = ["alloc"] }
prometheus = { version = "0.13.3", default-features = false }
proptest = "1.3.1"
proptest = { version = "1.3.1", default-features = false, features = ["alloc"] }
proptest-derive = "0.3.0"
rand = "0.8"
rand = { version = "0.8", default-features = false, features = ["alloc"] }
rayon = "1.8.0"
rocksdb = { version = "0.21.0", features = ["lz4"] }
serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = { version = "1.0" }
sha2 = "0.10.6"
digest = "0.10.6"
serde = { version = "1.0.188", default-features = false, features = ["alloc", "derive", "rc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
sha2 = { version = "0.10.6", default-features = false }
spin = "0.9.8"
digest = { version = "0.10.6", default-features = false, features = ["alloc"] }
thiserror = "1.0.38"
tiny-keccak = "2.0.2"
tracing = "0.1.37"
bech32 = "0.9.1"
derive_more = "0.99.11"
tracing = { version = "0.1.37", default-features = false, features = ["attributes"] }
bech32 = { version = "0.9.1", default-features = false }
derive_more = { version = "0.99.11", default-features = false }
clap = { version = "4.2.7", features = ["derive"] }
toml = "0.8.0"
jsonrpsee = { version = "0.20.1", features = ["jsonrpsee-types"] }
Expand Down
1 change: 0 additions & 1 deletion docker/credentials/bridge-0.addr

This file was deleted.

9 changes: 0 additions & 9 deletions docker/credentials/bridge-0.key

This file was deleted.

12 changes: 6 additions & 6 deletions examples/demo-rollup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ default-run = "sov-demo-rollup"
[dependencies]
# non-optional dependencies
sov-celestia-adapter = { path = "../../adapters/celestia", features = [
"native",
"native",
] }
const-rollup-config = { path = "../const-rollup-config" }
sov-stf-runner = { path = "../../full-node/sov-stf-runner", features = [
"native",
"native",
] }
sov-rollup-interface = { path = "../../rollup-interface", features = [
"native",
"native",
] }
sov-modules-stf-template = { path = "../../module-system/sov-modules-stf-template", features = [
"native",
"native",
] }
sov-modules-api = { path = "../../module-system/sov-modules-api", features = [
"native",
"native",
] }
sov-nft-module = { path = "../../module-system/module-implementations/sov-nft-module" }
demo-stf = { path = "./stf", features = ["native"] }
sov-ledger-rpc = { path = "../../full-node/sov-ledger-rpc", features = [
"server",
"server",
] }
risc0 = { path = "./provers/risc0" }
borsh = { workspace = true, features = ["bytes"] }
Expand Down
Loading
Loading