Skip to content

Commit

Permalink
[release]Prepare release v1.12.2 (#3687)
Browse files Browse the repository at this point in the history
  • Loading branch information
jolestar authored Aug 25, 2022
1 parent c6634ad commit f43e580
Show file tree
Hide file tree
Showing 28 changed files with 46 additions and 48 deletions.
2 changes: 1 addition & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ starcoin-service-registry = {path = "../commons/service-registry"}
starcoin-state-store-api = {path = "../state/state-store-api"}
starcoin-state-tree = {path = "../state/state-tree"}
starcoin-storage = {path = "../storage"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
starcoin-vm-runtime = {path = "../vm/vm-runtime"}
starcoin-vm-types = {path = "../vm/types"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
types = {path = "../types", package = "starcoin-types"}
[target."cfg(target_os=\"linux\")".dependencies]
pprof = {version = "0.10", features = ["flamegraph", "criterion"]}
Expand Down
2 changes: 1 addition & 1 deletion block-relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ starcoin-network-rpc-api = {path = "../network-rpc/api"}
starcoin-service-registry = {path = "../commons/service-registry"}
starcoin-sync = {package = "starcoin-sync", path = "../sync"}
starcoin-sync-api = {package = "starcoin-sync-api", path = "../sync/api"}
starcoin-time-service = {path = "../commons/time-service"}
starcoin-txpool = {path = "../txpool"}
starcoin-txpool-api = {path = "../txpool/api"}
starcoin-types = {path = "../types", package = "starcoin-types"}
starcoin-time-service = {path = "../commons/time-service"}

[dev-dependencies]
hex = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ starcoin-open-block = {path = "./open-block"}
starcoin-service-registry = {path = "../commons/service-registry"}
starcoin-state-api = {path = "../state/api"}
starcoin-statedb = {path = "../state/statedb"}
starcoin-time-service = {path = "../commons/time-service"}
starcoin-types = {path = "../types", package = "starcoin-types"}
starcoin-vm-types = {path = "../vm/types"}
state-tree = {path = "../state/state-tree", package = "starcoin-state-tree"}
starcoin-time-service={path="../commons/time-service"}
storage = {package = "starcoin-storage", path = "../storage"}
thiserror = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion chain/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev =
starcoin-service-registry = {path = "../../commons/service-registry"}
starcoin-state-api = {path = "../../state/api"}
starcoin-statedb = {path = "../../state/statedb"}
starcoin-time-service = {path = "../../commons/time-service"}
starcoin-types = {path = "../../types"}
starcoin-vm-types = {path = "../../vm/types"}
starcoin-time-service = {path = "../../commons/time-service"}
thiserror = "1.0"
[dev-dependencies]

Expand Down
2 changes: 1 addition & 1 deletion cmd/faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ starcoin-executor = {path = "../../executor"}
starcoin-logger = {path = "../../commons/logger"}
starcoin-rpc-client = {path = "../../rpc/client"}
starcoin-state-api = {path = "../../state/api"}
starcoin-types = {path = "../../types"}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
starcoin-types = {path = "../../types"}
tiny_http = "0.8.2"
tokio = {version = "^1", features = ["full"]}
tokio-executor = {version = "0.2.0-alpha.6", features = ["blocking"]}
Expand Down
2 changes: 1 addition & 1 deletion cmd/miner_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jsonrpc-core-client = {version = "18"}
jsonrpc-server-utils = {version = "18"}
logger = {path = "../../commons/logger", package = "starcoin-logger"}
starcoin-config = {path = "../../config"}
starcoin-time-service = {path = "../../commons/time-service"}
starcoin-types = {path = "../../types"}
starcoin-time-service={path="../../commons/time-service"}
tokio = {version = "^1", features = ["full"]}

async-trait = "0.1.53"
Expand Down
2 changes: 1 addition & 1 deletion cmd/peer-watcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ clap = {version = "3", features = ["derive"]}
futures = "0.3.12"
network-p2p = {path = "../../network-p2p"}
network-p2p-types = {path = "../../network-p2p/types"}
network-types = {path = "../../network/types"}
starcoin-config = {path = "../../config"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-genesis = {path = "../../genesis"}
starcoin-logger = {path = "../../commons/logger"}
starcoin-network = {path = "../../network"}
starcoin-storage = {path = "../../storage"}
starcoin-types = {path = "../../types"}
network-types = {path="../../network/types"}
2 changes: 1 addition & 1 deletion cmd/starcoin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ move-command-line-common = {git = "https://github.com/starcoinorg/move", rev = "
move-errmapgen = {git = "https://github.com/starcoinorg/move", rev = "9d1e76b770d630ad646a540b325f88ef986af3a3"}
network-api = {path = "../../network/api", package = "network-api"}
network-p2p-types = {path = "../../network-p2p/types"}
network-types = {path = "../../network/types"}
rand = "0.8.5"
scmd = {path = "../../commons/scmd"}
serde = {version = "1.0.130"}
Expand Down Expand Up @@ -55,7 +56,6 @@ starcoin-vm-types = {path = "../../vm/types"}
stdlib = {path = "../../vm/stdlib"}
tokio = {version = "^1", features = ["full"]}
vm-status-translator = {path = "../../vm/vm-status-translator"}
network-types = {path="../../network/types"}
[dev-dependencies]
stest = {path = "../../commons/stest"}
test-helper = {path = "../../test-helper"}
Expand Down
2 changes: 1 addition & 1 deletion cmd/tx-factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ starcoin-logger = {path = "../../commons/logger"}
starcoin-rpc-api = {path = "../../rpc/api"}
starcoin-rpc-client = {path = "../../rpc/client"}
starcoin-state-api = {path = "../../state/api"}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
starcoin-types = {path = "../../types"}
tokio = {version = "^1", features = ["full"]}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
6 changes: 3 additions & 3 deletions commons/metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ prometheus = {version = "0.13.1", default-features = false}
serde_json = {version = "1.0", features = ["arbitrary_precision"]}
starcoin-logger = {path = "../logger"}

futures = { version = "0.3.12", optional=true}
hyper = {version = "0.14.12", features = ["full"], optional=true}
futures = {version = "0.3.12", optional = true}
hyper = {version = "0.14.12", features = ["full"], optional = true}

[target."cfg(any(target_os = \"macos\", target_os=\"linux\"))".dependencies]
psutil = {version = "3.2", default-features = false, features = [
Expand All @@ -25,4 +25,4 @@ psutil = {version = "3.2", default-features = false, features = [
timeout-join-handler = {path = "../timeout-join-handler"}

[features]
server = ["prometheus/push", "hyper", "futures"]
server = ["prometheus/push", "hyper", "futures"]
4 changes: 2 additions & 2 deletions commons/time-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ publish = false
version = "1.12.1"

[dependencies]
log = { version = "0.4" }
serde = { version = "1" }
log = {version = "0.4"}
serde = {version = "1"}
2 changes: 1 addition & 1 deletion commons/timeout-join-handler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ version = "1.12.1"
thiserror = "1.0"

[dev-dependencies]
anyhow = "1.0.41"
anyhow = "1.0.41"
4 changes: 2 additions & 2 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ libc = "^0.2"
names = {version = "0.14.0", default-features = false}
network-api = {path = "../network/api", package = "network-api"}
network-p2p-types = {path = "../network-p2p/types"}
network-types = {path = "../network/types"}
num_cpus = "1.13"
num_enum = "0.5.7"
once_cell = "1.13.0"
Expand All @@ -30,12 +31,11 @@ starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev =
starcoin-logger = {path = "../commons/logger", package = "starcoin-logger"}
starcoin-metrics = {path = "../commons/metrics"}
starcoin-system = {path = "../commons/system", package = "starcoin-system"}
network-types = {path="../network/types"}
starcoin-time-service = {path = "../commons/time-service"}
starcoin-types = {path = "../types"}
starcoin-uint = {path = "../types/uint"}
starcoin-vm-types = {path = "../vm/types"}
stdlib = {path = "../vm/stdlib"}
starcoin-time-service = {path = "../commons/time-service"}
tempfile = "3.2.0"
thiserror = "1.0"
toml = {version = "0.5.9", default-features = false}
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ starcoin-chain-api = {path = "../chain/api"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-logger = {path = "../commons/logger"}
starcoin-state-api = {path = "../state/api"}
starcoin-time-service = {path = "../commons/time-service"}
starcoin-types = {path = "../types"}
starcoin-vm-types = {path = "../vm/types"}
starcoin-time-service = {path= "../commons/time-service"}
thiserror = "1.0"

[dev-dependencies]
Expand Down
14 changes: 7 additions & 7 deletions executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ statedb = {path = "../state/statedb", package = "starcoin-statedb"}
vm-runtime = {package = "starcoin-vm-runtime", path = "../vm/vm-runtime"}

[dev-dependencies]
state-tree = {path = "../state/state-tree", package = "starcoin-state-tree"}
bcs-ext = {package = "bcs-ext", path = "../commons/bcs_ext"}
once_cell = "1.13.0"
starcoin-dev = {path = "../vm/dev"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
starcoin-config = {path = "../config"}
stdlib = {package = "stdlib", path = "../vm/stdlib"}
hex = "0.4"
once_cell = "1.13.0"
serde = "1"
serde_json = "1"
starcoin-abi-resolver = {path = "../abi/resolver"}
starcoin-abi-types = {path = "../abi/types"}
starcoin-config = {path = "../config"}
starcoin-consensus = {path = "../consensus"}
starcoin-dev = {path = "../vm/dev"}
starcoin-resource-viewer = {path = "../vm/resource-viewer"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
state-tree = {path = "../state/state-tree", package = "starcoin-state-tree"}
stdlib = {package = "stdlib", path = "../vm/stdlib"}
stest = {path = "../commons/stest"}
tempfile = "3.1.0"
test-helper = {path = "../test-helper"}
stest = {path = "../commons/stest"}

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion executor/benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ starcoin-config = {path = "../../config"}
starcoin-consensus = {path = "../../consensus"}
starcoin-genesis = {path = "../../genesis"}
starcoin-state-api = {path = "../../state/api"}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
starcoin-vm-types = {path = "../../vm/types"}
statedb = {path = "../../state/statedb", package = "starcoin-statedb"}
storage = {package = "starcoin-storage", path = "../../storage"}
types = {package = "starcoin-types", path = "../../types"}
vm-runtime = {package = "starcoin-vm-runtime", path = "../../vm/vm-runtime"}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
[features]
2 changes: 1 addition & 1 deletion miner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ tokio = {version = "^1", features = ["full"]}
types = {path = "../types", package = "starcoin-types"}

[dev-dependencies]
starcoin-time-service={path="../commons/time-service"}
network-rpc = {path = "../network-rpc", package = "starcoin-network-rpc"}
starcoin-genesis = {path = "../genesis"}
starcoin-network-rpc-api = {path = "../network-rpc/api"}
starcoin-node = {path = "../node"}
starcoin-state-service = {path = "../state/service"}
starcoin-sync-api = {package = "starcoin-sync-api", path = "../sync/api"}
starcoin-time-service = {path = "../commons/time-service"}
stest = {path = "../commons/stest"}
sync = {path = "../sync", package = "starcoin-sync"}
test-helper = {path = "../test-helper"}
2 changes: 1 addition & 1 deletion network-rpc/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ bcs-ext = {path = "../../commons/bcs_ext", package = "bcs-ext"}
futures = "0.3.12"
network-rpc-core = {path = "../core"}
network-rpc-derive = {path = "../derive"}
network-types = {path = "../../network/types"}
serde = {version = "1.0.130", features = ["derive"]}
starcoin-accumulator = {path = "../../commons/accumulator"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-logger = {path = "../../commons/logger"}
starcoin-state-api = {path = "../../state/api"}
starcoin-state-tree = {path = "../../state/state-tree"}
starcoin-types = {path = "../../types"}
network-types={path="../../network/types"}
2 changes: 1 addition & 1 deletion network-rpc/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serde = {version = "1.0.130", features = ["derive"]}
#todo remove this dependency.
starcoin-types = {path = "../../types", package = "starcoin-types"}

network-types={path="../../network/types"}
network-types = {path = "../../network/types"}

[dev-dependencies]
stest = {path = "../../commons/stest"}
4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ starcoin-consensus = {path = "../consensus"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-dev = {path = "../vm/dev"}
starcoin-executor = {path = "../executor"}
starcoin-vm-runtime = {path = "../vm/vm-runtime" }
starcoin-genesis = {path = "../genesis"}
starcoin-logger = {path = "../commons/logger"}
starcoin-metrics = {path = "../commons/metrics", features=["server"]}
starcoin-metrics = {path = "../commons/metrics", features = ["server"]}
starcoin-miner = {path = "../miner"}
starcoin-miner-client = {path = "../cmd/miner_client"}
starcoin-network = {path = "../network"}
Expand All @@ -52,6 +51,7 @@ starcoin-sync-api = {package = "starcoin-sync-api", path = "../sync/api"}
starcoin-txpool = {path = "../txpool"}
starcoin-txpool-api = {path = "../txpool/api"}
starcoin-types = {path = "../types"}
starcoin-vm-runtime = {path = "../vm/vm-runtime"}
thiserror = "1.0"
timeout-join-handler = {path = "../commons/timeout-join-handler"}
tokio = {version = "^1", features = ["full"]}
Expand Down
2 changes: 1 addition & 1 deletion rpc/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jsonrpc-pubsub = "18"
jsonrpc-server-utils = "18"
network-api = {path = "../../network/api", package = "network-api"}
network-p2p-types = {path = "../../network-p2p/types"}
network-types = {path = "../../network/types"}
openrpc-rs = {git = "https://github.com/starcoinorg/openrpc-rs", rev = "077761500ff6fabe2f20da1bdf429575931e3048"}
schemars = {git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2"}
serde = {version = "1.0.130", features = ["derive"]}
Expand All @@ -44,7 +45,6 @@ starcoin-state-api = {path = "../../state/api"}
starcoin-sync-api = {path = "../../sync/api"}
starcoin-txpool-api = {path = "../../txpool/api"}
starcoin-types = {path = "../../types"}
network-types = {path = "../../network/types"}
starcoin-vm-types = {path = "../../vm/types"}
thiserror = "1.0"
vm-status-translator = {path = "../../vm/vm-status-translator"}
Expand Down
2 changes: 1 addition & 1 deletion rpc/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jsonrpc-server-utils = "18"
log = "0.4.16"
network-api = {path = "../../network/api", package = "network-api"}
network-p2p-types = {path = "../../network-p2p/types"}
network-types = {path = "../../network/types"}
parity-tokio-ipc = "0.9"
parking_lot = "0.12.1"
serde = {version = "1.0.130", features = ["derive"]}
Expand All @@ -48,7 +49,6 @@ starcoin-state-api = {path = "../../state/api"}
starcoin-state-tree = {path = "../../state/state-tree"}
starcoin-sync-api = {path = "../../sync/api"}
starcoin-txpool-api = {path = "../../txpool/api"}
network-types = {path = "../../network/types"}
starcoin-types = {path = "../../types"}
starcoin-vm-types = {path = "../../vm/types"}
thiserror = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions rpc/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ log = "0.4"
network-api = {path = "../../network/api"}
network-p2p-types = {path = "../../network-p2p/types"}
network-rpc-core = {path = "../../network-rpc/core"}
network-types = {path = "../../network/types"}
parking_lot = "0.12"
serde = {version = "1.0.130", features = ["derive"]}
serde_json = {version = "1.0", features = ["arbitrary_precision"]}
Expand Down Expand Up @@ -69,7 +70,6 @@ starcoin-storage = {path = "../../storage"}
starcoin-sync-api = {path = "../../sync/api"}
starcoin-txpool = {path = "../../txpool"}
starcoin-txpool-api = {path = "../../txpool/api"}
network-types = {path = "../../network/types"}
starcoin-types = {path = "../../types"}
starcoin-vm-types = {path = "../../vm/types"}
thiserror = "1.0"
Expand All @@ -80,8 +80,8 @@ starcoin-chain-mock = {path = "../../chain/mock"}
starcoin-executor = {path = "../../executor"}
starcoin-genesis = {path = "../../genesis"}
starcoin-rpc-client = {path = "../client"}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
starcoin-txpool-mock-service = {path = "../../txpool/mock-service"}
stest = {path = "../../commons/stest"}
test-helper = {path = "../../test-helper"}
tokio = {version = "^1", features = ["full"]}
starcoin-transaction-builder = {path = "../../vm/transaction-builder"}
4 changes: 2 additions & 2 deletions sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ parking_lot = "0.12"
pin-project = "1.0.1"
pin-utils = "0.1.0"
rand = "0.8.5"
starcoin-time-service={path="../commons/time-service"}
starcoin-accumulator = {package = "starcoin-accumulator", path = "../commons/accumulator"}
starcoin-chain = {path = "../chain"}
starcoin-chain-api = {path = "../chain/api"}
Expand All @@ -40,6 +39,8 @@ starcoin-state-api = {path = "../state/api"}
starcoin-state-tree = {package = "starcoin-state-tree", path = "../state/state-tree"}
starcoin-storage = {path = "../storage"}
starcoin-sync-api = {package = "starcoin-sync-api", path = "../sync/api"}
starcoin-time-service = {path = "../commons/time-service"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
starcoin-txpool-api = {path = "../txpool/api"}
starcoin-types = {path = "../types"}
starcoin-vm-types = {path = "../vm/types"}
Expand All @@ -48,7 +49,6 @@ stream-task = {path = "../commons/stream-task"}
sysinfo = "0.25.1"
thiserror = "1.0"
txpool = {path = "../txpool", package = "starcoin-txpool"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
[dev-dependencies]
hex = "0.4.3"
miner = {path = "../miner", package = "starcoin-miner"}
Expand Down
2 changes: 1 addition & 1 deletion txpool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ proptest = "1.0.0"
proptest-derive = {version = "0.3.0"}
starcoin-genesis = {path = "../genesis"}
starcoin-open-block = {path = "../chain/open-block"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
stdlib = {path = "../vm/stdlib"}
tempfile = "3"
test-helper = {path = "../test-helper"}
starcoin-transaction-builder = {path = "../vm/transaction-builder"}
[features]
default = []
fuzzing = ["proptest", "proptest-derive", "types/fuzzing"]
2 changes: 1 addition & 1 deletion vm/stdlib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ anyhow = "1.0.41"
bcs-ext = {package = "bcs-ext", path = "../../commons/bcs_ext"}
clap = {version = "3", features = ["derive"]}

fs_extra = "1.2.0"
include_dir = "0.6.2"
itertools = "0.10.3"
log = "0.4.16"
Expand All @@ -27,7 +28,6 @@ starcoin-move-compiler = {path = "../../vm/compiler"}
starcoin-vm-types = {path = "../types"}
tempfile = "3.2.0"
walkdir = "2.3"
fs_extra = "1.2.0"

[dev-dependencies]
datatest-stable = "0.1.1"
Loading

0 comments on commit f43e580

Please sign in to comment.