Skip to content

Commit

Permalink
[release] Prepare v1.12.0 (#3648)
Browse files Browse the repository at this point in the history
  • Loading branch information
jolestar committed Aug 12, 2022
1 parent c61056e commit 369a4d3
Show file tree
Hide file tree
Showing 103 changed files with 1,693 additions and 1,710 deletions.
202 changes: 101 additions & 101 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions abi/decoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Starcoin Core Dev <dev@starcoin.org>"]
edition = "2021"
license = "Apache-2.0"
name = "starcoin-abi-decoder"
version = "1.11.11"
version = "1.12.0"

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

Expand All @@ -12,7 +12,7 @@ anyhow = "1.0.41"
bcs = "0.1"
bcs-ext = {path = "../../commons/bcs_ext"}
hex = "0.4.3"
move-binary-format = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
move-binary-format = {git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89"}
ordinal = "0.3.1"
schemars = {git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2"}
serde = {version = "1.0.130", features = ["derive", "rc"]}
Expand Down
10 changes: 5 additions & 5 deletions abi/resolver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
authors = ["Starcoin Core Dev <dev@starcoin.org>"]
edition = "2021"
name = "starcoin-abi-resolver"
version = "1.11.11"
version = "1.12.0"

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

[dependencies]
anyhow = "~1"
move-model = { git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89" }
starcoin-abi-types = { path = "../types" }
starcoin-resource-viewer = { path = "../../vm/resource-viewer" }
starcoin-vm-types = { path = "../../vm/types" }
move-model = {git = "https://github.com/starcoinorg/move", rev = "3d15607d706d3cc1f03427205444c539def45b89"}
starcoin-abi-types = {path = "../types"}
starcoin-resource-viewer = {path = "../../vm/resource-viewer"}
starcoin-vm-types = {path = "../../vm/types"}
[dev-dependencies]
serde_json = "1"
stdlib = {path = "../../vm/stdlib"}
Expand Down
12 changes: 6 additions & 6 deletions abi/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "starcoin-abi-types"
version = "1.11.11"
authors = ["Starcoin Core Dev <dev@starcoin.org>"]
license = "Apache-2.0"
edition = "2021"
license = "Apache-2.0"
name = "starcoin-abi-types"
version = "1.12.0"

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

[dependencies]
starcoin-vm-types = { path = "../../vm/types" }
anyhow = "~1"
hex = "0.4"
schemars = {git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2"}
serde = "~1"
serde_bytes = "0.11"
serde_json = "~1"
hex = "0.4"
schemars = { git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2" }
starcoin-vm-types = {path = "../../vm/types"}
28 changes: 14 additions & 14 deletions account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
[package]
name = "starcoin-account"
version = "1.11.11"
authors = ["Starcoin Core Dev <dev@starcoin.org>"]
edition = "2021"
license = "Apache-2.0"
name = "starcoin-account"
publish = false
edition = "2021"
version = "1.12.0"

[dependencies]
anyhow = "1.0.41"
futures = "0.3.12"
async-trait = "0.1"
rand = "0.8.5"
bcs-ext = {package = "bcs-ext", path = "../commons/bcs_ext"}
futures = "0.3.12"
parking_lot = "0.12"
rand = "0.8.5"
rand_core = {version = "0.6.3", default-features = false}
serde = "1.0.130"
serde_json = "~1"
rand_core = { version = "0.6.3", default-features = false }
starcoin-account-api = { path = "./api" }
bcs-ext = { package = "bcs-ext", path = "../commons/bcs_ext" }
starcoin-types = { path = "../types" }
starcoin-config = { path = "../config" }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
starcoin-decrypt = { path = "../commons/decrypt" }
starcoin-storage = { path = "../storage" }
starcoin-logger = { path = "../commons/logger" }
starcoin-account-api = {path = "./api"}
starcoin-config = {path = "../config"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-decrypt = {path = "../commons/decrypt"}
starcoin-logger = {path = "../commons/logger"}
starcoin-storage = {path = "../storage"}
starcoin-types = {path = "../types"}

[dev-dependencies]
hex = "0.4.3"
Expand Down
28 changes: 14 additions & 14 deletions account/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[package]
name = "starcoin-account-api"
version = "1.11.11"
authors = ["Starcoin Core Dev <dev@starcoin.org>"]
edition = "2021"
license = "Apache-2.0"
name = "starcoin-account-api"
publish = false
edition = "2021"
version = "1.12.0"

[dependencies]
anyhow = "1.0.41"
thiserror = "1.0"
async-trait = "0.1"
serde = { version = "1.0.130", default-features = false }
serde_bytes = "0.11.5"
serde_json = "~1"
bcs-ext = { package = "bcs-ext", path = "../../commons/bcs_ext" }
bcs-ext = {package = "bcs-ext", path = "../../commons/bcs_ext"}
futures = "0.3.12"
hex = "0.4.3"
starcoin-types = { path = "../../types" }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
rand = "0.8.5"
rand_core = { version = "0.6.3", default-features = false }
futures = "0.3.12"
starcoin-service-registry = { path = "../../commons/service-registry" }
schemars = { git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2" }
rand_core = {version = "0.6.3", default-features = false}
schemars = {git = "https://github.com/starcoinorg/schemars", rev = "6972da92f4360e1779168bb3fe0274c521d324e2"}
serde = {version = "1.0.130", default-features = false}
serde_bytes = "0.11.5"
serde_json = "~1"
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-service-registry = {path = "../../commons/service-registry"}
starcoin-types = {path = "../../types"}
thiserror = "1.0"

[dev-dependencies]

Expand Down
16 changes: 8 additions & 8 deletions account/provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "starcoin-account-provider"
version = "1.11.11"
edition = "2021"
name = "starcoin-account-provider"
version = "1.12.0"

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

[dependencies]
anyhow = "1.0.41"
starcoin-account = { path = "../" }
starcoin-account-api = { path = "../api", features = ["mock"] }
starcoin-types = { path = "../../types" }
starcoin-rpc-client = { path = "../../rpc/client" }
starcoin-config = { path = "../../config" }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
starcoin-account = {path = "../"}
starcoin-account-api = {path = "../api", features = ["mock"]}
starcoin-config = {path = "../../config"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-rpc-client = {path = "../../rpc/client"}
starcoin-types = {path = "../../types"}
28 changes: 14 additions & 14 deletions account/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[package]
name = "starcoin-account-service"
version = "1.11.11"
authors = ["Starcoin Core Dev <dev@starcoin.org>"]
edition = "2021"
license = "Apache-2.0"
name = "starcoin-account-service"
publish = false
edition = "2021"
version = "1.12.0"

[dependencies]
anyhow = "1.0.41"
futures = "0.3.12"
async-trait = "0.1"
starcoin-logger = { path = "../../commons/logger" }
starcoin-types = { path = "../../types" }
bcs-ext = { package = "bcs-ext", path = "../../commons/bcs_ext" }
starcoin-config = { path = "../../config" }
starcoin-service-registry = { path = "../../commons/service-registry" }
starcoin-account-api = { path = "../api", features = ["mock"] }
starcoin-account = { path = "../" }
starcoin-crypto = { git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
starcoin-chain-notify = { path = "../../chain/chain-notify" }
bcs-ext = {package = "bcs-ext", path = "../../commons/bcs_ext"}
futures = "0.3.12"
starcoin-account = {path = "../"}
starcoin-account-api = {path = "../api", features = ["mock"]}
starcoin-chain-notify = {path = "../../chain/chain-notify"}
starcoin-config = {path = "../../config"}
starcoin-crypto = {git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
starcoin-logger = {path = "../../commons/logger"}
starcoin-service-registry = {path = "../../commons/service-registry"}
starcoin-types = {path = "../../types"}
tokio = "1"

[dev-dependencies]
stest = { path = "../../commons/stest" }
stest = {path = "../../commons/stest"}
tempfile = "3"
60 changes: 30 additions & 30 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
[package]
name = "benchmarks"
version = "1.11.11"
authors = ["Starcoin Core Dev <dev@starcoin.org>"]
edition = "2021"
license = "Apache-2.0"
name = "benchmarks"
publish = false
edition = "2021"
version = "1.12.0"

[dependencies]
anyhow = "1.0.41"
criterion = "0.3.6"
proptest = "1.0.0"
crypto = {package = "starcoin-crypto", git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
executor-benchmark = {path = "../executor/benchmark", package = "starcoin-executor-benchmark"}
forkable-jellyfish-merkle = {path = "../commons/forkable-jellyfish-merkle"}
futures = "0.3.12"
futures-timer = "3.0"
types = { path = "../types", package = "starcoin-types" }
starcoin-storage = { path = "../storage" }
starcoin-service-registry = { path = "../commons/service-registry" }
crypto = { package = "starcoin-crypto", git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
starcoin-config = { path = "../config" }
starcoin-accumulator = { package = "starcoin-accumulator", path = "../commons/accumulator" }
starcoin-chain = { path = "../chain" }
starcoin-consensus = { path = "../consensus" }
starcoin-genesis = { path = "../genesis" }
starcoin-executor = { path = "../executor", package = "starcoin-executor" }
starcoin-vm-types = { path = "../vm/types" }
starcoin-account-api = { path = "../account/api" }
logger = {path = "../commons/logger", package = "starcoin-logger"}
parking_lot = "0.12"
forkable-jellyfish-merkle = { path = "../commons/forkable-jellyfish-merkle" }
starcoin-state-store-api = { path = "../state/state-store-api" }
starcoin-state-tree = { path = "../state/state-tree" }
proptest = "1.0.0"
rand = "0.8.5"
rand_core = { version = "0.6.3", default-features = false }
starcoin-vm-runtime = { path = "../vm/vm-runtime" }
starcoin-network-api = { path = "../network/api", package = "network-api" }
executor-benchmark = { path = "../executor/benchmark", package = "starcoin-executor-benchmark" }
futures = "0.3.12"
logger = { path = "../commons/logger", package = "starcoin-logger" }
rand_core = {version = "0.6.3", default-features = false}
starcoin-account-api = {path = "../account/api"}
starcoin-accumulator = {package = "starcoin-accumulator", path = "../commons/accumulator"}
starcoin-chain = {path = "../chain"}
starcoin-config = {path = "../config"}
starcoin-consensus = {path = "../consensus"}
starcoin-executor = {path = "../executor", package = "starcoin-executor"}
starcoin-genesis = {path = "../genesis"}
starcoin-network-api = {path = "../network/api", package = "network-api"}
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-vm-runtime = {path = "../vm/vm-runtime"}
starcoin-vm-types = {path = "../vm/types"}
types = {path = "../types", package = "starcoin-types"}
[target."cfg(target_os=\"linux\")".dependencies]
pprof = { version = "0.10", features = ["flamegraph", "criterion"] }
pprof = {version = "0.10", features = ["flamegraph", "criterion"]}
[dev-dependencies]

# see https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
[lib]
bench = false

[[bench]]
name = "bench_storage"
harness = false
name = "bench_storage"

[[bench]]
name = "bench_chain"
harness = false
name = "bench_chain"

[[bench]]
name = "bench_state_tree"
harness = false
name = "bench_state_tree"

[[bench]]
name = "bench_vm"
harness = false
name = "bench_vm"
44 changes: 22 additions & 22 deletions block-relayer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
[package]
name = "starcoin-block-relayer"
version = "1.11.11"
authors = ["Starcoin Core Dev <dev@starcoin.org>"]
edition = "2021"
license = "Apache-2.0"
name = "starcoin-block-relayer"
publish = false
edition = "2021"
version = "1.12.0"

[dependencies]
anyhow = "1.0.41"
futures = "0.3.12"
config = { path = "../config", package = "starcoin-config" }
crypto = { package = "starcoin-crypto", git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc" }
logger = { path = "../commons/logger", package = "starcoin-logger" }
async-trait = "0.1"
starcoin-chain-api = { path = "../chain/api" }
starcoin-chain = { path = "../chain" }
starcoin-txpool-api = { path = "../txpool/api" }
starcoin-txpool = { path = "../txpool" }
network-api = { package = "network-api", path = "../network/api" }
starcoin-sync-api = { package = "starcoin-sync-api", path = "../sync/api" }
starcoin-sync = { package = "starcoin-sync", path = "../sync" }
starcoin-network = { path = "../network" }
bcs-ext = { package = "bcs-ext", path = "../commons/bcs_ext" }
starcoin-types = { path = "../types", package = "starcoin-types" }
starcoin-metrics = { path = "../commons/metrics" }
starcoin-network-rpc-api = { path = "../network-rpc/api" }
starcoin-service-registry = { path = "../commons/service-registry" }
bcs-ext = {package = "bcs-ext", path = "../commons/bcs_ext"}
config = {path = "../config", package = "starcoin-config"}
crypto = {package = "starcoin-crypto", git = "https://github.com/starcoinorg/starcoin-crypto", rev = "d871dfb4216f034ee334a575926c101574d9d6dc"}
futures = "0.3.12"
logger = {path = "../commons/logger", package = "starcoin-logger"}
network-api = {package = "network-api", path = "../network/api"}
starcoin-chain = {path = "../chain"}
starcoin-chain-api = {path = "../chain/api"}
starcoin-metrics = {path = "../commons/metrics"}
starcoin-network = {path = "../network"}
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-txpool = {path = "../txpool"}
starcoin-txpool-api = {path = "../txpool/api"}
starcoin-types = {path = "../types", package = "starcoin-types"}

[dev-dependencies]
tokio = { version = "^1", features = ["full"] }
hex = "0.4.3"
stest = { path = "../commons/stest" }
stest = {path = "../commons/stest"}
tokio = {version = "^1", features = ["full"]}
Loading

0 comments on commit 369a4d3

Please sign in to comment.