summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorIshitaTakeshi <ishitah.takeshi@gmail.com>2024-05-15 18:02:22 +0900
committerTavian Barnes <tavianator@tavianator.com>2025-02-18 10:34:38 -0500
commitb4c25f17cd8d75f05123928e47f44dd56275749f (patch)
treef39e279a0d412dd0ce372ed865d33d423732c9bc /src/lib.rs
parent17f118fbc74a26f55a5263e616faeb20368de9d0 (diff)
downloadacap-b4c25f17cd8d75f05123928e47f44dd56275749f.tar.xz
Make this crate work with no-std
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 29d351a..7dcf390 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -124,6 +124,10 @@
#![warn(rust_2018_idioms)]
+#![no_std]
+
+extern crate alloc;
+
pub mod chebyshev;
pub mod coords;
pub mod cos;