Skip to content

Commit

Permalink
chore: add crates.io dependecies for published crates (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-starkware authored Aug 7, 2023
1 parent fee8619 commit 71742c0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
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" }
papyrus_config = { path = "../papyrus_config", version = "0.0.3" }
rustc-hex.workspace = true
serde.workspace = true
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ blockifier.workspace = true
cairo-lang-starknet.workspace = true
cairo-vm.workspace = true
lazy_static.workspace = true
papyrus_storage = { path = "../papyrus_storage"}
papyrus_storage = { path = "../papyrus_storage", version = "0.0.3" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["arbitrary_precision"]}
starknet_api.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ hyper = { workspace = true, features = ["full"] }
jsonrpsee = { workspace = true, features = ["full"] }
metrics.workspace = true
papyrus_common = { path = "../papyrus_common"}
papyrus_config = { path = "../papyrus_config" }
papyrus_config = { path = "../papyrus_config", version = "0.0.3" }
papyrus_execution = { path = "../papyrus_execution" }
papyrus_proc_macros = { path = "../papyrus_proc_macros"}
papyrus_storage = { path = "../papyrus_storage", version = "0.0.3" }
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_gateway/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ pub fn get_methods_from_supported_apis(
storage_reader,
max_events_chunk_size,
max_events_keys,
shared_highest_block: shared_highest_block.clone(),
shared_highest_block,
starknet_writer,
};
version_config::VERSION_CONFIG
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_monitoring_gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ 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.0.3" }
papyrus_config = { path = "../papyrus_config" }
papyrus_config = { path = "../papyrus_config", version = "0.0.3" }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ 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" }
papyrus_config = { path = "../papyrus_config", version = "0.0.3" }
papyrus_common = { path = "../papyrus_common" }
papyrus_gateway = { path = "../papyrus_gateway" }
papyrus_monitoring_gateway = { path = "../papyrus_monitoring_gateway" }
Expand Down
2 changes: 1 addition & 1 deletion crates/papyrus_sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ libmdbx = { workspace = true, features = ["lifetimed-bytes"] }
papyrus_storage = { path = "../papyrus_storage", version = "0.0.3" }
papyrus_base_layer = { path = "../papyrus_base_layer" }
papyrus_common = { path = "../papyrus_common" }
papyrus_config = { path = "../papyrus_config" }
papyrus_config = { path = "../papyrus_config", version = "0.0.3" }
reqwest = { workspace = true, features = ["json", "blocking"] }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/starknet_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ indexmap = { workspace = true, features = ["serde"] }
lazy_static.workspace = true
mockall = { workspace = true, optional = true }
os_info.workspace = true
papyrus_config = { path = "../papyrus_config" }
papyrus_config = { path = "../papyrus_config", version = "0.0.3" }
rand = { workspace = true, optional = true }
rand_chacha = { workspace = true, optional = true }
reqwest = { workspace = true, features = ["json", "blocking"] }
Expand Down

0 comments on commit 71742c0

Please sign in to comment.