Skip to content

Commit 11c9f2a

Browse files
committed
chore: Update dependencies, prepare 0.6.3
1 parent cb757de commit 11c9f2a

File tree

6 files changed

+66
-74
lines changed

6 files changed

+66
-74
lines changed

Cargo.lock

Lines changed: 49 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [
55
resolver = "2"
66

77
[workspace.package]
8-
version = "0.6.0"
8+
version = "0.6.3"
99
authors = ["Sebastian Beyvers <[email protected]>"]
1010
edition = "2021"
1111
repository = "https://github.com/ArunaStorage/aruna-file"

crates/pithos/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
[package]
22
name = "pithos"
33
description = "Client for the Pithos object storage file format"
4-
version = "0.6.2"
4+
version = "0.6.3"
55
authors.workspace = true
66
edition.workspace = true
77
repository.workspace = true
88
license.workspace = true
99

1010
[dependencies]
11-
anyhow = "1.0.98"
12-
async-channel = "2.3.1"
13-
async-trait = "0.1.88"
11+
anyhow = "1.0.100"
12+
async-channel = "2.5.0"
13+
async-trait = "0.1.89"
1414
base64 = "0.22.1"
1515
borsh = { version = "1.5.7", features = ["std", "derive"] }
1616
bytes = "1.10.1"
1717
chacha20poly1305 = "0.10.1"
18-
clap = { version = "4.5.38", features = ["derive"] }
18+
clap = { version = "4.5.50", features = ["derive"] }
1919
crypto_kx = { version = "0.2.1", features = ["serde"] }
2020
dotenvy = "0.15.7"
2121
futures = "0.3.31"
2222
futures-util = "0.3.31"
23-
openssl = "0.10.72"
24-
pithos_lib = { path = "../pithos_lib", version = "0.6.2" }
25-
rand = "0.9.1"
23+
openssl = "0.10.74"
24+
pithos_lib = { path = "../pithos_lib", version = "0.6.3" }
25+
rand = "0.9.2"
2626
serde_json = "1.0.140"
2727
tokio = { version = "1.45.0", features = ["full"] }
2828
tokio-stream = "0.1.17"

crates/pithos_lib/Cargo.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pithos_lib"
33
description = "Library and components for encrypting / compressing pithos (.pto) files, including specification"
4-
version = "0.6.2"
4+
version = "0.6.3"
55
authors.workspace = true
66
edition.workspace = true
77
repository.workspace = true
@@ -10,22 +10,22 @@ license.workspace = true
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
anyhow = "1.0.98"
14-
async-compression = { version = "0.4.23", features = ["tokio", "zstd", "gzip"] }
13+
anyhow = "1.0.100"
14+
async-compression = { version = "0.4.32", features = ["tokio", "zstd", "gzip"] }
1515
hex = "0.4.3"
1616
chacha20poly1305 = "0.10.1"
1717
byteorder = "1.5.0"
1818
bytes = "1.10.1"
1919
tokio = { version = "1.45.0", features = ["full"] }
2020
tokio-util = "0.7.15"
21-
async-trait = "0.1.88"
21+
async-trait = "0.1.89"
2222
hyper = { version = "1.6.0", features = ["full"] }
2323
futures = "0.3.31"
24-
async-channel = "2.3.1"
24+
async-channel = "2.5.0"
2525
async-stream = "0.3.6"
2626
tar = "0.4.44"
2727
digest = "0.10.7"
28-
async_zip = { version = "0.0.17", features = ["chrono", "tokio", "deflate"] }
28+
async_zip = { version = "0.0.18", features = ["chrono", "tokio", "deflate"] }
2929
pin-project = "1.1.10"
3030
tracing = "0.1.41"
3131
md-5 = "0.10.6"
@@ -44,7 +44,6 @@ serde = { version = "1.0.219", features = ["derive"] }
4444
[dev-dependencies]
4545
tempfile = "3.23.0"
4646
criterion = { version = "0.6.0", features = ["html_reports", "async_tokio"] }
47-
pithos = { path = "../pithos" }
4847

4948
[[bench]]
5049
name = "performance"

crates/pithos_lib/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,6 @@ mod tests {
459459
.await
460460
.unwrap();
461461

462-
println!("{:?}", output);
463462
assert_eq!(output, b"Thi".to_vec());
464463
}
465464

@@ -1665,8 +1664,6 @@ mod tests {
16651664
let encrypted_bytes =
16661665
encrypt_chunk(&file_bytes, b"", b"wvwj3485nxgyq5ub9zd3e7jsrq7a92ea", false).unwrap();
16671666

1668-
println!("{}", encrypted_bytes.len());
1669-
16701667
// Create a new GenericReadWriter that decrypts the parts
16711668
let mut output = vec![];
16721669
let part_lengths: Vec<u64> = vec![encrypted_bytes.len() as u64]; //vec![5099288];

crates/pithos_pyo3/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "pithos_pyo3"
33
description = "Client for the Pithos object storage file format"
4-
version = "0.6.2"
4+
version = "0.6.3"
55
authors.workspace = true
66
edition.workspace = true
77
repository.workspace = true
88
license.workspace = true
99

1010
[dependencies]
11-
pithos_lib = { path = "../pithos_lib", version = "0.6.2" }
11+
pithos_lib = { path = "../pithos_lib", version = "0.6.3" }

0 commit comments

Comments
 (0)