diff --git a/Cargo.lock b/Cargo.lock index 576fd5d8..4f62d36a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -845,7 +845,7 @@ checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" [[package]] name = "cryo_cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anstyle", "chrono", @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "cryo_freeze" -version = "0.1.0" +version = "0.2.0" dependencies = [ "async-trait", "ethers", @@ -886,7 +886,7 @@ dependencies = [ [[package]] name = "cryo_python" -version = "0.1.2" +version = "0.2.0" dependencies = [ "cryo_cli", "cryo_freeze", diff --git a/Cargo.toml b/Cargo.toml index 0a7f87df..23d4d77b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" homepage = "https://github.com/paradigmxyz/cryo" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index a20ddee9..90f3eb4a 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -26,7 +26,7 @@ hex = "0.4.3" indicatif = "0.17.5" polars = "0.30.0" tokio = "1.29.0" -cryo_freeze = { version = "0.1.0", path = "../freeze" } +cryo_freeze = { version = "0.2.0", path = "../freeze" } colored = "2.0.0" thousands = "0.2.0" chrono = "0.4.26" diff --git a/crates/python/Cargo.toml b/crates/python/Cargo.toml index 43e017dd..9a263f3e 100644 --- a/crates/python/Cargo.toml +++ b/crates/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cryo_python" -version = "0.1.2" +version = "0.2.0" edition = "2021" build = "build.rs" @@ -10,8 +10,8 @@ name = "cryo" crate-type = ["cdylib"] [dependencies] -cryo_cli = { version = "0.1.0", path = "../cli" } -cryo_freeze = { version = "0.1.0", path = "../freeze" } +cryo_cli = { version = "0.2.0", path = "../cli" } +cryo_freeze = { version = "0.2.0", path = "../freeze" } polars = { version = "0.30.0", features = ["parquet", "string_encoding", "polars-lazy", "lazy", "binary_encoding", "json", "dtype-struct"] } pyo3 = { version = "0.18.0", features = ["extension-module"] } pyo3-asyncio = { version = "0.18.0", features = ["tokio-runtime"] }