Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jshinonome committed Jul 28, 2024
1 parent 48b7988 commit c925341
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["crates/*", "py-kola"]
default-members = ["crates/*"]

[workspace.package]
version = "1.0.0"
version = "1.2.1"
authors = ["Jo Shinonome <jo.shinonome@gmail.com>"]
edition = "2021"
repository = "https://github.com/jshinonome/kola"
Expand Down
12 changes: 6 additions & 6 deletions crates/kola/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ name = "kola"
crate-type = ["lib"]

[dependencies]
native-tls = "0.2.11"
chrono = "0.4.37"
native-tls = "0.2.12"
chrono = "0.4.38"
polars-arrow = { workspace = true }
thiserror = "1.0.58"
thiserror = "1.0.63"
rayon = "1.10.0"
uuid = "1.8.0"
lz4_flex = { version = "0.11.2", features = ["frame"] }
uuid = "1.10.0"
lz4_flex = { version = "0.11.3", features = ["frame"] }

[dependencies.polars]
workspace = true
Expand All @@ -30,5 +30,5 @@ features = [
]

[dependencies.xxhash-rust]
version = "0.8.10"
version = "0.8.12"
features = ["xxh3", "const_xxh3", "xxh32"]
4 changes: 2 additions & 2 deletions py-kola/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ crate-type = ["cdylib"]
[dependencies]
kola = { path = "../crates/kola" }
pyo3 = { version = "0.21.2", features = ["extension-module", "chrono"] }
thiserror = "1.0.58"
thiserror = "1.0.63"
pyo3-polars = "0.15.0"
chrono = "0.4.37"
chrono = "0.4.38"

[dependencies.polars]
workspace = true
Expand Down
6 changes: 2 additions & 4 deletions py-kola/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,18 @@ authors = [{ name = "Jo Shinonome", email = "jo.shinonome@gmail.com" }]
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Rust",
]
keywords = ["q", "kdb", "polars", "dataframe", "arrow"]
dynamic = ["version"]
dependencies = ['polars >= 0.20.16', 'pyarrow >= 10.0.1']
dependencies = ['polars >= 1.2.1', 'pyarrow >= 7.0.0']

[tool.maturin]
include = ["rust-toolchain.toml"]
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly-2024-06-03"
channel = "stable"

0 comments on commit c925341

Please sign in to comment.