Skip to content
This repository has been archived by the owner on Dec 26, 2024. It is now read-only.

Commit

Permalink
chore: publish version 0.3.0-rc.0 (#1690)
Browse files Browse the repository at this point in the history
  • Loading branch information
yair-starkware authored Feb 8, 2024
1 parent 12aafb2 commit 4fe8d61
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 38 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
]

[workspace.package]
version = "0.3.0-dev.1"
version = "0.3.0-rc.0"
edition = "2021"
repository = "https://github.com/starkware-libs/papyrus/"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_base_layer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license-file.workspace = true
[dependencies]
async-trait.workspace = true
ethers.workspace = true
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
rustc-hex.workspace = true
serde.workspace = true
serde_json.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/papyrus_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ cairo-vm.workspace = true
indexmap.workspace = true
itertools.workspace = true
lazy_static.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-dev.1" }
papyrus_common = { path = "../papyrus_common", version = "0.3.0-rc.0" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-rc.0" }
rand = { workspace = true, optional = true }
rand_chacha = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/papyrus_monitoring_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ futures-util.workspace = true
hyper = { workspace = true, features = ["full"] }
metrics-exporter-prometheus = { version = "0.12.1" }
metrics-process = { version = "1.0.11" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-rc.0" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
rand.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"] }
Expand Down
12 changes: 9 additions & 3 deletions crates/papyrus_network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,16 @@ clap = { workspace = true, features = ["derive"] }
defaultmap.workspace = true
derive_more.workspace = true
futures.workspace = true
libp2p = { workspace = true, features = ["noise", "quic", "tcp", "tokio", "yamux"] }
libp2p = { workspace = true, features = [
"noise",
"quic",
"tcp",
"tokio",
"yamux",
] }
replace_with.workspace = true
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-rc.0" }
prost.workspace = true
prost-types.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/papyrus_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jsonrpsee = { workspace = true, features = ["full"] }
libmdbx = { workspace = true, features = ["lifetimed-bytes"] }
lazy_static.workspace = true
papyrus_base_layer = { path = "../papyrus_base_layer" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_common = { path = "../papyrus_common", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
papyrus_common = { path = "../papyrus_common", version = "0.3.0-rc.0" }
papyrus_monitoring_gateway = { path = "../papyrus_monitoring_gateway" }
papyrus_rpc = { path = "../papyrus_rpc" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-dev.1" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-rc.0" }
papyrus_sync = { path = "../papyrus_sync" }
reqwest = { workspace = true, features = ["json", "blocking"] }
serde = { workspace = true, features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/papyrus_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ hyper = { workspace = true, features = ["full"] }
jsonrpsee = { workspace = true, features = ["full"] }
lazy_static.workspace = true
metrics.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_common = { path = "../papyrus_common", version = "0.3.0-rc.0" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
papyrus_execution = { path = "../papyrus_execution" }
papyrus_proc_macros = { path = "../papyrus_proc_macros" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-dev.1" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-rc.0" }
starknet_client = { path = "../starknet_client" }
regex = { workspace = true }
serde = { workspace = true, features = ["derive"] }
Expand Down
9 changes: 6 additions & 3 deletions crates/papyrus_storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ memmap2.workspace = true
metrics.workspace = true
num-bigint.workspace = true
page_size.workspace = true
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_proc_macros = { path = "../papyrus_proc_macros", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
papyrus_proc_macros = { path = "../papyrus_proc_macros", version = "0.3.0-rc.0" }
parity-scale-codec.workspace = true
primitive-types.workspace = true
serde = { workspace = true, features = ["derive"] }
Expand All @@ -38,7 +38,10 @@ validator = { workspace = true, features = ["derive"] }

[dev-dependencies]
assert_matches.workspace = true
cairo-lang-casm = { workspace = true, features = ["parity-scale-codec", "schemars"] }
cairo-lang-casm = { workspace = true, features = [
"parity-scale-codec",
"schemars",
] }
camelpaste.workspace = true
insta = { workspace = true, features = ["yaml"] }
metrics-exporter-prometheus.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/papyrus_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ itertools.workspace = true
libmdbx = { workspace = true, features = ["lifetimed-bytes"] }
lru.workspace = true
metrics.workspace = true
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-dev.1" }
papyrus_storage = { path = "../papyrus_storage", version = "0.3.0-rc.0" }
papyrus_base_layer = { path = "../papyrus_base_layer" }
papyrus_common = { path = "../papyrus_common", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_common = { path = "../papyrus_common", version = "0.3.0-rc.0" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
papyrus_proc_macros = { path = "../papyrus_proc_macros" }
reqwest = { workspace = true, features = ["json", "blocking"] }
serde = { workspace = true, features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/starknet_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ http.workspace = true
indexmap = { workspace = true, features = ["serde"] }
mockall = { workspace = true, optional = true }
os_info.workspace = true
papyrus_common = { path = "../papyrus_common", version = "0.3.0-dev.1" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-dev.1" }
papyrus_common = { path = "../papyrus_common", version = "0.3.0-rc.0" }
papyrus_config = { path = "../papyrus_config", version = "0.3.0-rc.0" }
rand = { workspace = true, optional = true }
rand_chacha = { workspace = true, optional = true }
reqwest = { workspace = true, features = ["json", "blocking"] }
Expand Down

0 comments on commit 4fe8d61

Please sign in to comment.