|
1 | 1 | [workspace]
|
2 | 2 | resolver = "2"
|
3 | 3 | members = [
|
| 4 | + "account", |
| 5 | + "account/api", |
4 | 6 | "abi/decoder",
|
5 | 7 | "abi/resolver",
|
6 | 8 | "abi/types",
|
@@ -44,6 +46,8 @@ members = [
|
44 | 46 | ]
|
45 | 47 |
|
46 | 48 | default-members = [
|
| 49 | + "account", |
| 50 | + "account/api", |
47 | 51 | "abi/decoder",
|
48 | 52 | "abi/resolver",
|
49 | 53 | "abi/types",
|
@@ -113,6 +117,7 @@ ark-ec = "0.4.0"
|
113 | 117 | ark-ff = "0.4.0"
|
114 | 118 | ark-serialize = "0.4.0"
|
115 | 119 | ark-std = { version = "0.4.0", features = ["getrandom"] }
|
| 120 | +async-trait = "0.1.88" |
116 | 121 | atty = "0.2.14"
|
117 | 122 | backtrace = "0.3"
|
118 | 123 | blake2 = "0.10.4"
|
@@ -266,18 +271,23 @@ starcoin-parallel-executor = { path = "vm/parallel-executor" }
|
266 | 271 |
|
267 | 272 | starcoin-types = { path = "types" }
|
268 | 273 | starcoin-uint = { path = "types/uint" }
|
| 274 | +starcoin-account-api = { path = "account/api" } |
269 | 275 | starcoin-state-api = { path = "state/api" }
|
| 276 | +starcoin-state-service = { path = "state/service" } |
270 | 277 | starcoin-state-store-api = { path = "state/state-store-api" }
|
271 | 278 | starcoin-state-tree = { path = "state/state-tree" }
|
272 | 279 | starcoin-statedb = { path = "state/statedb" }
|
| 280 | +starcoin-storage = { path = "storage" } |
273 | 281 | vm-status-translator = { path = "vm/vm-status-translator" }
|
274 | 282 |
|
275 | 283 | # starcoin shared dependencies
|
276 | 284 | # branch multi-move-vm
|
277 | 285 | starcoin-accumulator = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
|
278 | 286 | starcoin-infallible = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
|
279 | 287 | starcoin-time-service = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
|
| 288 | +starcoin-service-registry = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" } |
280 | 289 | starcoin-logger = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
|
| 290 | +starcoin-decrypt = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" } |
281 | 291 | forkable-jellyfish-merkle = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
|
282 | 292 | bcs-ext = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
|
283 | 293 | starcoin-metrics = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
|
|
0 commit comments