diff --git a/Cargo.lock b/Cargo.lock index 9a6dbb23dd..d4d0a08bf6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -694,11 +694,11 @@ dependencies = [ [[package]] name = "deltalake-python" -version = "0.5.8" +version = "0.6.0" dependencies = [ "chrono", "deltalake", - "env_logger 0.9.0", + "env_logger", "lazy_static", "pyo3", "regex", @@ -812,20 +812,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" dependencies = [ "atty", - "humantime 1.3.0", - "log", - "regex", - "termcolor", -] - -[[package]] -name = "env_logger" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" -dependencies = [ - "atty", - "humantime 2.1.0", + "humantime", "log", "regex", "termcolor", @@ -1180,12 +1167,6 @@ dependencies = [ "quick-error", ] -[[package]] -name = "humantime" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" - [[package]] name = "hyper" version = "0.14.20" @@ -2016,7 +1997,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d" dependencies = [ - "env_logger 0.7.1", + "env_logger", "log", ] diff --git a/python/Cargo.toml b/python/Cargo.toml index 3371772606..38bd68be30 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltalake-python" -version = "0.5.8" +version = "0.6.0" authors = ["Qingping Hou "] homepage = "https://github.com/delta-io/delta-rs" license = "Apache-2.0" diff --git a/python/pyproject.toml b/python/pyproject.toml index 4ce0e2113c..565f1eff6e 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin==0.12.19"] +requires = ["maturin==0.13.2"] build-backend = "maturin" [project]