Skip to content

Commit e8a8388

Browse files
committed
➕ Add dependency on paste
1 parent 1bb12e1 commit e8a8388

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

Cargo.lock

Lines changed: 7 additions & 0 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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ serde = { version = "1", default-features = false, features = [
2020
"derive",
2121
], optional = true }
2222
portable-atomic = { version = "1", optional = true }
23+
paste = "1.0"
2324

2425
[dev-dependencies]
2526
serde_json = "1"

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ compile_error!("Either the `alloc` or `heapless` feature must be enabled");
1515
#[cfg(feature = "alloc")]
1616
extern crate alloc;
1717

18+
// Re-export `paste` for the macros.
19+
#[doc(hidden)]
20+
pub use paste;
21+
1822
pub mod vec;
1923
pub use vec::Vec;
2024

0 commit comments

Comments
 (0)