Skip to content

Commit da89621

Browse files
Update dependencies
1 parent 9e17a3e commit da89621

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[workspace]
2-
32
members = [
43
"crates/iconv-sys",
54
"crates/readstat",
@@ -8,3 +7,4 @@ members = [
87
# internal
98
"crates/readstat-tests",
109
]
10+
resolver = "2"

crates/iconv-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ links = "iconv"
1010
build = "build.rs"
1111

1212
[build-dependencies]
13-
bindgen = "0.66"
13+
bindgen = "0.68"
1414
cc = "1.0"

crates/readstat-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ links = "readstat"
1010
build = "build.rs"
1111

1212
[build-dependencies]
13-
bindgen = "0.66"
13+
bindgen = "0.68"
1414
cc = "1.0"
1515

1616
[target.'cfg(windows)'.dependencies]

crates/readstat-tests/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "readstat-tests"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
authors = ["Curtis Alexander <calex@calex.org>"]
55
edition = "2021"
66

77
[dev-dependencies]
8-
arrow2 = { version = "0.17", features = ["full"] }
8+
arrow2 = { version = "0.18", features = ["full"] }
99
assert_cmd = "2.0"
1010
assert_fs = "1.0"
1111
chrono = { version = "0.4", features = ["serde"] }
1212
path_abs = "0.5"
13-
polars = { version = "0.31", features = ["parquet"] }
13+
polars = { version = "0.33", features = ["parquet"] }
1414
predicates = "3"
1515
readstat = { path = "../readstat" }
1616

crates/readstat/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
repository = "https://github.com/curtisalexander/readstat-rs"
99

1010
[dependencies]
11-
arrow2 = { version = "0.17", features = [
11+
arrow2 = { version = "0.18", features = [
1212
"io_csv",
1313
"io_ipc",
1414
"io_ipc_compression",
@@ -18,21 +18,21 @@ arrow2 = { version = "0.17", features = [
1818
] }
1919
clap = { version = "4", features = ["derive", "unicode", "wrap_help"] }
2020
crossbeam = "0.8"
21-
csv = "1.1"
21+
csv = "1.3"
2222
chrono = { version = "0.4", features = ["serde"] }
2323
colored = "2.0"
2424
env_logger = "0.10"
2525
indicatif = "0.17"
2626
lazy_static = "1.4"
2727
lexical = "6.1"
2828
log = "0.4"
29-
num_cpus = "1.13"
29+
num_cpus = "1.16"
3030
num-derive = "0.4"
3131
num-format = "0.4"
3232
num-traits = "0.2"
3333
path_abs = "0.5"
34-
rayon = "1.5"
35-
regex = "1.5"
34+
rayon = "1.8"
35+
regex = "1.10"
3636
readstat-sys = { path = "../readstat-sys", version = "0.2.0" }
3737
serde = { version = "1", features = ["derive"] }
3838
serde_json = "1"

0 commit comments

Comments
 (0)