Skip to content

Commit bf5ec6e

Browse files
authored
Support more services (#4487)
* add back chain-state-service * add account and account-api
1 parent 129e469 commit bf5ec6e

File tree

12 files changed

+954
-4
lines changed

12 files changed

+954
-4
lines changed

Cargo.lock

+241
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[workspace]
22
resolver = "2"
33
members = [
4+
"account",
5+
"account/api",
46
"abi/decoder",
57
"abi/resolver",
68
"abi/types",
@@ -44,6 +46,8 @@ members = [
4446
]
4547

4648
default-members = [
49+
"account",
50+
"account/api",
4751
"abi/decoder",
4852
"abi/resolver",
4953
"abi/types",
@@ -113,6 +117,7 @@ ark-ec = "0.4.0"
113117
ark-ff = "0.4.0"
114118
ark-serialize = "0.4.0"
115119
ark-std = { version = "0.4.0", features = ["getrandom"] }
120+
async-trait = "0.1.88"
116121
atty = "0.2.14"
117122
backtrace = "0.3"
118123
blake2 = "0.10.4"
@@ -266,18 +271,23 @@ starcoin-parallel-executor = { path = "vm/parallel-executor" }
266271

267272
starcoin-types = { path = "types" }
268273
starcoin-uint = { path = "types/uint" }
274+
starcoin-account-api = { path = "account/api" }
269275
starcoin-state-api = { path = "state/api" }
276+
starcoin-state-service = { path = "state/service" }
270277
starcoin-state-store-api = { path = "state/state-store-api" }
271278
starcoin-state-tree = { path = "state/state-tree" }
272279
starcoin-statedb = { path = "state/statedb" }
280+
starcoin-storage = { path = "storage" }
273281
vm-status-translator = { path = "vm/vm-status-translator" }
274282

275283
# starcoin shared dependencies
276284
# branch multi-move-vm
277285
starcoin-accumulator = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
278286
starcoin-infallible = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
279287
starcoin-time-service = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
288+
starcoin-service-registry = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
280289
starcoin-logger = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
290+
starcoin-decrypt = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
281291
forkable-jellyfish-merkle = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
282292
bcs-ext = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }
283293
starcoin-metrics = { git = "https://github.com/starcoinorg/starcoin", rev = "515acac0cc25521b215898d833831bd02ef1106d" }

0 commit comments

Comments
 (0)