From 6a69a48f7f1e2742f568e0539034ce2a4372604d Mon Sep 17 00:00:00 2001 From: Jonathan Cornaz Date: Sun, 20 Feb 2022 14:42:16 +0100 Subject: [PATCH] feat: make 'std' feature explicit --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index b5570a9..853a791 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,10 @@ repository = "https://github.com/jcornaz/bvh-arena" keywords = ["bvh", "sah", "bounding", "volume", "aabb"] categories = ["game-development"] +[features] +default = ["std"] +std = ["slotmap/std"] + [dependencies] # Private dependencies: slotmap = { version = "1.0", default-features = false }