Skip to content

Commit

Permalink
fix crate versioning (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff authored Jan 15, 2024
1 parent 8c215dd commit 152a635
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ members = ["crates/cli", "crates/freeze", "crates/to_df", "crates/python"]
resolver = "2"

[workspace.package]
version = "0.3.0"
version = "0.3.2"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paradigmxyz/cryo"
repository = "https://github.com/paradigmxyz/cryo"
exclude = [".github/"]

[workspace.dependencies]
cryo_cli = { version = "0.3.2", path = "./crates/cli" }
cryo_freeze = { version = "0.3.2", path = "./crates/freeze" }
cryo_to_df = { version = "0.3.2", path = "./crates/to_df" }

anstyle = "1.0.4"
async-trait = "0.1.74"
chrono = { version = "0.4.31", features = ["serde"] }
Expand Down
3 changes: 1 addition & 2 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cryo_freeze = { version = "0.3.0", path = "../freeze" }

anstyle = { workspace = true }
clap_cryo = { workspace = true }
color-print = { workspace = true }
colored = { workspace = true }
cryo_freeze = { workspace = true }
ethers = { workspace = true }
eyre = { workspace = true }
governor = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/freeze/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cryo_to_df = { version = "0.3.0", path = "../to_df" }
async-trait = { workspace = true }
chrono = { workspace = true }
colored = { workspace = true }
cryo_to_df = { workspace = true }
ethers = { workspace = true }
ethers-core = { workspace = true }
futures = { workspace = true }
Expand All @@ -28,7 +30,5 @@ regex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
chrono = { workspace = true }
colored = { workspace = true }
thousands = { workspace = true }
tokio = { workspace = true }
5 changes: 2 additions & 3 deletions crates/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ path = "rust/lib.rs"
crate-type = ["cdylib"]

[dependencies]
cryo_cli = { version = "0.3.0", path = "../cli" }
cryo_freeze = { version = "0.3.0", path = "../freeze" }

cryo_cli = { workspace = true }
cryo_freeze = { workspace = true }
polars = { workspace = true }
pyo3 = { workspace = true }
pyo3-asyncio = { workspace = true }
Expand Down

0 comments on commit 152a635

Please sign in to comment.