Skip to content

Commit fa3dae1

Browse files
committed
chore: place all sugondat crates under common directory
1 parent ce24a42 commit fa3dae1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+20
-20
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ debug = 0
1111
[workspace]
1212
resolver = "2"
1313
members = [
14-
"sugondat-chain/node",
15-
"sugondat-chain/pallets/*",
16-
"sugondat-chain/runtimes/*",
17-
"sugondat-chain/primitives",
14+
"sugondat/chain/node",
15+
"sugondat/chain/pallets/*",
16+
"sugondat/chain/runtimes/*",
17+
"sugondat/chain/primitives",
1818
"adapters/sovereign",
19-
"sugondat-nmt",
20-
"sugondat-serde-util",
21-
"sugondat-shim",
22-
"sugondat-shim/common/rollkit",
23-
"sugondat-shim/common/sovereign",
24-
"sugondat-subxt"
19+
"sugondat/nmt",
20+
"sugondat/serde-util",
21+
"sugondat/shim",
22+
"sugondat/shim/common/rollkit",
23+
"sugondat/shim/common/sovereign",
24+
"sugondat/subxt-autogen"
2525
]

adapters/sovereign/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ borsh = { version = "0.10.3", features = ["bytes"] }
2121
bytes = { version = "1", features = ["serde"] }
2222

2323
sha2 = { version = "0.10.6", default-features = false }
24-
sugondat-nmt = { path = "../../sugondat-nmt", default-features = false }
24+
sugondat-nmt = { path = "../../sugondat/nmt", default-features = false }
2525
jsonrpsee = { version = "0.20.3", optional = true, features = ["ws-client"] }
2626
tokio = { version = "1", optional = true }
27-
sugondat-shim-common-sovereign = { path = "../../sugondat-shim/common/sovereign", optional = true, default-features = false, features = [
27+
sugondat-shim-common-sovereign = { path = "../../sugondat/shim/common/sovereign", optional = true, default-features = false, features = [
2828
"client",
2929
] }
3030
anyhow = "1.0.68"
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.

sugondat-chain/pallets/blobs/Cargo.toml renamed to sugondat/chain/pallets/blobs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ sp-io = { git = "https://github.com/paritytech/polkadot-sdk", default-features =
2525
# Local
2626
sugondat-primitives = { path = "../../primitives", default-features = false }
2727

28-
sugondat-nmt = { path = "../../../sugondat-nmt", default-features = false }
28+
sugondat-nmt = { path = "../../../nmt", default-features = false }
2929

3030
[dev-dependencies]
3131
serde = { version = "1.0.132" }
File renamed without changes.

sugondat-nmt/Cargo.toml renamed to sugondat/nmt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
1010
sha2 = { version = "0.10.6", default-features = false }
1111
nmt-rs = { git = "https://github.com/Sovereign-Labs/nmt-rs.git", rev = "627f9622a987db4a0b22dc04107442f4010096fb", default-features = false }
1212
serde = { version = "1.0.130", default-features = false, optional = true }
13-
sugondat-serde-util = { path = "../sugondat-serde-util", optional = true }
13+
sugondat-serde-util = { path = "../serde-util", optional = true }
1414

1515
[features]
1616
default = ["native"]
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.

sugondat-shim/Cargo.toml renamed to sugondat/shim/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ license = "MIT OR Apache-2.0"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
sugondat-nmt = { path = "../sugondat-nmt", features = ["serde"] }
11-
sugondat-subxt = { path = "../sugondat-subxt" }
10+
sugondat-nmt = { path = "../nmt", features = ["serde"] }
11+
sugondat-subxt = { path = "../subxt-autogen" }
1212
sugondat-shim-common-sovereign = { path = "common/sovereign", features = ["server"] }
1313
sugondat-shim-common-rollkit = { path = "common/rollkit" }
1414

sugondat-shim/common/rollkit/Cargo.toml renamed to sugondat/shim/common/rollkit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ edition = "2021"
99
async-trait = "0.1.74"
1010
jsonrpsee = { version = "0.20.3", features = ["macros", "server"] }
1111
serde = { version = "1.0.192", features = ["derive"] }
12-
sugondat-nmt = { path = "../../../sugondat-nmt", features = ["serde"] }
13-
sugondat-serde-util = { path = "../../../sugondat-serde-util" }
12+
sugondat-nmt = { path = "../../../nmt", features = ["serde"] }
13+
sugondat-serde-util = { path = "../../../serde-util" }

sugondat-shim/common/sovereign/Cargo.toml renamed to sugondat/shim/common/sovereign/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ edition = "2021"
99
async-trait = "0.1.74"
1010
jsonrpsee = { version = "0.20.3", features = ["macros"] }
1111
serde = { version = "1.0.192", features = ["derive"] }
12-
sugondat-nmt = { path = "../../../sugondat-nmt", features = ["serde"] }
13-
sugondat-serde-util = { path = "../../../sugondat-serde-util" }
12+
sugondat-nmt = { path = "../../../nmt", features = ["serde"] }
13+
sugondat-serde-util = { path = "../../../serde-util" }
1414

1515
[features]
1616
default = ["client", "server"]
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.

0 commit comments

Comments
 (0)