Skip to content

Commit

Permalink
Release v0.1.0 (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
preston-evans98 authored May 31, 2023
1 parent ee0c631 commit 3e8ff3c
Show file tree
Hide file tree
Showing 13 changed files with 57 additions and 52 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Sovereign Labs <[email protected]>"]
homepage = "sovereign.xyz"
homepage = "https://www.sovereign.xyz"
publish = false
repository = "https://github.com/sovereign-labs/sovereign-sdk"
rust-version = "1.66"
Expand Down
6 changes: 3 additions & 3 deletions full-node/db/sov-db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ resolver = "2"
[dependencies]
# Maintained by sovereign labs
jmt = { workspace = true }
sov-schema-db = { path = "../sov-schema-db" }
sov-rollup-interface = { path = "../../../rollup-interface" }
sov-schema-db = { path = "../sov-schema-db", version = "0.1" }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.1" }


# External
Expand All @@ -30,7 +30,7 @@ rocksdb = { workspace = true }
bincode = "1.3.3"

[dev-dependencies]
sov-schema-db = { path = "../sov-schema-db", features = ["temppath"] }
sov-schema-db = { path = "../sov-schema-db", version = "0.1", features = ["temppath"] }

[features]
default = []
Expand Down
3 changes: 2 additions & 1 deletion full-node/db/sov-schema-db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "README.md"

[dependencies]
# Dependencies maintained by sovereign labs
sov-rollup-interface = { path = "../../../rollup-interface" }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.1" }

# External dependencies
anyhow = { workspace = true }
Expand All @@ -32,6 +32,7 @@ hex = { workspace = true, optional = true }
byteorder = { workspace = true }
rand = { workspace = true }
hex = { workspace = true }

[features]
default = []
temppath = ["dep:byteorder", "dep:rand", "dep:hex"]
12 changes: 6 additions & 6 deletions module-system/module-implementations/sov-accounts/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ readme = "README.md"
resolver = "2"

[dev-dependencies]
sov-modules-api = { path = "../../sov-modules-api"}
sov-state = { path = "../../sov-state", features = ["temp"] }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1" }
sov-state = { path = "../../sov-state", version = "0.1", features = ["temp"] }

[dependencies]
anyhow = { workspace = true }
Expand All @@ -23,10 +23,10 @@ serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
thiserror = { workspace = true }

sov-modules-api = { path = "../../sov-modules-api", default-features = false }
sov-modules-macros = { path = "../../sov-modules-macros" }
sov-state = { path = "../../sov-state", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface" }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1", default-features = false }
sov-modules-macros = { path = "../../sov-modules-macros", version = "0.1" }
sov-state = { path = "../../sov-state", version = "0.1", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.1" }


[features]
Expand Down
12 changes: 6 additions & 6 deletions module-system/module-implementations/sov-bank/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ readme = "README.md"
resolver = "2"

[dev-dependencies]
sov-modules-api = { path = "../../sov-modules-api"}
sov-state = { path = "../../sov-state", features = ["temp"] }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1"}
sov-state = { path = "../../sov-state", version = "0.1", features = ["temp"] }

[dependencies]
anyhow = { workspace = true }
sov-modules-api = { path = "../../sov-modules-api", default-features = false}
sov-modules-macros = { path = "../../sov-modules-macros" }
sov-state = { path = "../../sov-state", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface" }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1", default-features = false}
sov-modules-macros = { path = "../../sov-modules-macros", version = "0.1" }
sov-state = { path = "../../sov-state", version = "0.1", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.1" }
serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
thiserror = { workspace = true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ readme = "README.md"
resolver = "2"

[dev-dependencies]
sov-rollup-interface = { path = "../../../rollup-interface", features = ["mocks"] }
sov-modules-api = { path = "../../sov-modules-api"}
sov-state = { path = "../../sov-state", features = ["temp"] }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.1", features = ["mocks"] }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1"}
sov-state = { path = "../../sov-state", version = "0.1", features = ["temp"] }

[dependencies]
anyhow = { workspace = true }
sov-bank = { path = "../sov-bank", default-features = false }
sov-modules-api = { path = "../../sov-modules-api", default-features = false }
sov-modules-macros = { path = "../../sov-modules-macros" }
sov-state = { path = "../../sov-state", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface" }
sov-bank = { path = "../sov-bank", version = "0.1", default-features = false }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1", default-features = false }
sov-modules-macros = { path = "../../sov-modules-macros", version = "0.1" }
sov-state = { path = "../../sov-state", version = "0.1", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.1" }
serde = { workspace = true }
serde_json = { workspace = true, optional = true }
thiserror = { workspace = true }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ readme = "README.md"
resolver = "2"

[dev-dependencies]
sov-modules-api = { path = "../../sov-modules-api"}
sov-state = { path = "../../sov-state", features = ["temp"] }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1" }
sov-state = { path = "../../sov-state", version = "0.1", features = ["temp"] }

[dependencies]
anyhow = { workspace = true }
sov-bank = { path = "../sov-bank", default-features = false }
sov-modules-api = { path = "../../sov-modules-api", default-features = false }
sov-modules-macros = { path = "../../sov-modules-macros" }
sov-state = { path = "../../sov-state", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface" }
sov-bank = { path = "../sov-bank", version = "0.1", default-features = false }
sov-modules-api = { path = "../../sov-modules-api", version = "0.1", default-features = false }
sov-modules-macros = { path = "../../sov-modules-macros", version = "0.1" }
sov-state = { path = "../../sov-state", version = "0.1", default-features = false }
sov-rollup-interface = { path = "../../../rollup-interface", version = "0.1" }
serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
thiserror = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions module-system/sov-modules-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ resolver = "2"

[dependencies]
anyhow = { workspace = true }
sov-state = { path = "../sov-state", default-features = false }
sov-rollup-interface = { path = "../../rollup-interface" }
sov-state = { path = "../sov-state", version = "0.1", default-features = false }
sov-rollup-interface = { path = "../../rollup-interface", version = "0.1" }
serde = { workspace = true }
borsh = { workspace = true }
thiserror = { workspace = true }
Expand Down
10 changes: 5 additions & 5 deletions module-system/sov-modules-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ path = "tests/all_tests.rs"

[dev-dependencies]
trybuild = "1.0"
sov-modules-api = { path = "../sov-modules-api"}
sov-modules-api = { path = "../sov-modules-api", version = "0.1" }
jsonrpsee = { version = "0.16.2", features = ["macros", "client-core", "server"] }
sov-state = { path = "../sov-state", features = ["temp"] }
sov-db = { path = "../../full-node/db/sov-db", features = ["temp"] }
sov-state = { path = "../sov-state", version = "0.1", features = ["temp"] }
sov-db = { path = "../../full-node/db/sov-db", version = "0.1", features = ["temp"] }

[dependencies]
anyhow = { workspace = true }
jsonrpsee = { workspace = true, features = ["http-client", "server"]}
sov-modules-api = { path = "../sov-modules-api", default-features = false }
sov-rollup-interface = { path = "../../rollup-interface" }
sov-modules-api = { path = "../sov-modules-api", version = "0.1", default-features = false }
sov-rollup-interface = { path = "../../rollup-interface", version = "0.1" }


syn = { version = "1.0", features = ["full"] }
Expand Down
6 changes: 3 additions & 3 deletions module-system/sov-modules-stf-template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ tracing = { workspace = true }
jmt = { workspace = true }
hex = { workspace = true }

sov-rollup-interface = { path = "../../rollup-interface" }
sov-state = { path = "../sov-state", default-features = false }
sov-modules-api = { path = "../sov-modules-api", default-features = false }
sov-rollup-interface = { path = "../../rollup-interface", version = "0.1" }
sov-state = { path = "../sov-state", version = "0.1", default-features = false }
sov-modules-api = { path = "../sov-modules-api", version = "0.1", default-features = false }
10 changes: 5 additions & 5 deletions module-system/sov-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ anyhow = { workspace = true }
borsh = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
sov-rollup-interface = { path = "../../rollup-interface" }
sov-db = { path = "../../full-node/db/sov-db", optional = true }
sov-first-read-last-write-cache = { path = "../utils/sov-first-read-last-write-cache" }
sov-rollup-interface = { path = "../../rollup-interface", version = "0.1" }
sov-db = { path = "../../full-node/db/sov-db", version = "0.1", optional = true }
sov-first-read-last-write-cache = { path = "../utils/sov-first-read-last-write-cache", version = "0.1" }
jmt = { workspace = true }
hex = { workspace = true }
sha2 = { workspace = true }
tracing = { workspace = true }

[dev-dependencies]
sov-db = { path = "../../full-node/db/sov-db", features = ["temp"] }
sov-schema-db = { path = "../../full-node/db/sov-schema-db", features = ["temppath"] }
sov-db = { path = "../../full-node/db/sov-db", version = "0.1", features = ["temp"] }
sov-schema-db = { path = "../../full-node/db/sov-schema-db", version = "0.1", features = ["temppath"] }

[features]
default = ["native"]
Expand Down
10 changes: 5 additions & 5 deletions packages_to_publish.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
sov-rollup-interface
sov-first-read-last-write-cache
sov-schema-db
sov-db
sov-state
sov-modules-macros
sov-modules-api
sov-modules-macros
sov-modules-stf-template
sov-accounts
sov-bank
sov-sequencer-registry
sov-prover-incentives
sov-bank
sov-accounts
sov-schema-db
sov-db
4 changes: 4 additions & 0 deletions rollup-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ rust-version = { workspace = true }
version = { workspace = true }
readme = "README.md"
resolver = "2"
exclude = [
"specs/assets/*",
]


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 3e8ff3c

Please sign in to comment.