Skip to content

Commit bd7d7b5

Browse files
committed
fix: str args
1 parent b300c47 commit bd7d7b5

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ categories = ["encoding"]
1212
license-file = "LICENSE.txt"
1313

1414
[workspace.dependencies]
15-
tlbits = { path = "./crates/bits", version = "0.6.1" }
16-
tlb = { path = "./crates/tlb", version = "0.6.1" }
17-
tlb-ton = { path = "./crates/tlb-ton", version = "0.6.1" }
18-
ton-contracts = { path = "./crates/contracts", version = "0.6.1" }
19-
toner = { path = "./crates/toner", version = "0.6.1" }
15+
tlbits = { path = "./crates/bits", version = "0.6.2" }
16+
tlb = { path = "./crates/tlb", version = "0.6.2" }
17+
tlb-ton = { path = "./crates/tlb-ton", version = "0.6.2" }
18+
ton-contracts = { path = "./crates/contracts", version = "0.6.2" }
19+
toner = { path = "./crates/toner", version = "0.6.2" }
2020

2121
anyhow = "1"
2222
arbitrary = "1.4"

crates/bits/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tlbits"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition.workspace = true
55
rust-version.workspace = true
66
repository.workspace = true

crates/bits/src/as/borrow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ impl<'de: 'a, 'a> BitUnpackAs<'de, Cow<'a, str>> for BorrowCow {
6969
where
7070
R: BitReader<'de> + ?Sized,
7171
{
72-
let bytes: Vec<u8> = reader.unpack(len)?;
72+
let bytes: Vec<u8> = reader.unpack((len, ()))?;
7373
String::from_utf8(bytes)
7474
.map(Cow::Owned)
7575
.map_err(Error::custom)

crates/contracts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ton-contracts"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition.workspace = true
55
rust-version.workspace = true
66
repository.workspace = true

crates/tlb-ton/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tlb-ton"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition.workspace = true
55
rust-version.workspace = true
66
repository.workspace = true

crates/tlb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tlb"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition.workspace = true
55
rust-version.workspace = true
66
repository.workspace = true

crates/toner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toner"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition.workspace = true
55
rust-version.workspace = true
66
repository.workspace = true

0 commit comments

Comments
 (0)