Skip to content

Commit c760da1

Browse files
committed
fix: re-export
1 parent e4aaeae commit c760da1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Put this into your Nargo.toml.
99
If you are using Noir:
1010

1111
```toml
12-
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.35.4" }
12+
nodash = { git = "https://github.com/olehmisar/nodash/", tag = "v0.35.5" }
1313
```
1414

1515
The version of nodash matches the version of Noir. The patch version may be different if a bugfix or a new feature is added for the same version of Noir. E.g., [email protected] and [email protected] are compatible with [email protected].

src/lib.nr

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ mod array;
66

77
pub use string::{to_hex_string_bytes, str_to_u64};
88
pub use math::{clamp, div_ceil, sqrt::sqrt};
9+
pub use array::pack_bytes;
910

1011
trait ArrayExtensions<T, let N: u32> {
1112
fn slice<let M: u32>(self, start: u32, end: u32) -> [T; M];

0 commit comments

Comments
 (0)