feat: add no_std support in appropriate crates

This commit is contained in:
Greg Johnston
2024-02-07 18:38:44 -05:00
parent 63dacdcc95
commit 9ca1cba504
3 changed files with 4 additions and 3 deletions

View File

@@ -3,6 +3,4 @@ name = "next_tuple"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@@ -1,3 +1,4 @@
#![no_std]
#![allow(non_snake_case)]
pub trait TupleBuilder<Next> {