Browse Source

fix: add re-exports of vec and format macros

al-falcon-test-vectors
Bobbin Threadbare 1 year ago
parent
commit
2be17b74fb
No known key found for this signature in database GPG Key ID: 289C444AD87BC941
3 changed files with 10 additions and 2 deletions
  1. +4
    -0
      CHANGELOG.md
  2. +2
    -2
      Cargo.toml
  3. +4
    -0
      src/utils/mod.rs

+ 4
- 0
CHANGELOG.md

@ -1,3 +1,7 @@
# 0.8.4 (2024-03-17)
* Re-added unintentionally removed re-exported liballoc macros (`vec` and `format` macros).
# 0.8.3 (2024-03-17) # 0.8.3 (2024-03-17)
* Re-added unintentionally removed re-exported liballoc macros (#292). * Re-added unintentionally removed re-exported liballoc macros (#292).

+ 2
- 2
Cargo.toml

@ -1,12 +1,12 @@
[package] [package]
name = "miden-crypto" name = "miden-crypto"
version = "0.8.3"
version = "0.8.4"
description = "Miden Cryptographic primitives" description = "Miden Cryptographic primitives"
authors = ["miden contributors"] authors = ["miden contributors"]
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"
repository = "https://github.com/0xPolygonMiden/crypto" repository = "https://github.com/0xPolygonMiden/crypto"
documentation = "https://docs.rs/miden-crypto/0.8.3"
documentation = "https://docs.rs/miden-crypto/0.8.4"
categories = ["cryptography", "no-std"] categories = ["cryptography", "no-std"]
keywords = ["miden", "crypto", "hash", "merkle"] keywords = ["miden", "crypto", "hash", "merkle"]
edition = "2021" edition = "2021"

+ 4
- 0
src/utils/mod.rs

@ -9,6 +9,10 @@ mod kv_map;
// RE-EXPORTS // RE-EXPORTS
// ================================================================================================ // ================================================================================================
#[deprecated(since = "0.8.3", note = "You should prefer to import from `alloc::*`")]
pub use alloc::{format, vec};
pub use winter_utils::{ pub use winter_utils::{
boxed, string, uninit_vector, Box, ByteReader, ByteWriter, Deserializable, boxed, string, uninit_vector, Box, ByteReader, ByteWriter, Deserializable,
DeserializationError, Serializable, SliceReader, DeserializationError, Serializable, SliceReader,

Loading…
Cancel
Save