diff --git a/crates/cust/Cargo.toml b/crates/cust/Cargo.toml index 39eab9c8..c9952684 100644 --- a/crates/cust/Cargo.toml +++ b/crates/cust/Cargo.toml @@ -24,7 +24,7 @@ vek = { version = "0.15.1", optional = true, default-features = false } bytemuck = { version = "1.7.3", optional = true } [features] -default= ["bytemuck"] +default= ["bytemuck", "impl_glam", "impl_mint", "impl_vek"] impl_glam = ["cust_core/glam", "glam"] impl_mint = ["cust_core/mint", "mint"] impl_vek = ["cust_core/vek", "vek"] diff --git a/crates/cust_core/Cargo.toml b/crates/cust_core/Cargo.toml index 1eacca12..5adb9117 100644 --- a/crates/cust_core/Cargo.toml +++ b/crates/cust_core/Cargo.toml @@ -14,6 +14,3 @@ mint = { version = "^0.5", optional = true } half = { version = "1.8", optional = true } num-complex = { version = "0.4", optional = true } cust_derive = { path = "../cust_derive", version = "0.2" } - -[features] -default = ["vek", "glam", "mint"]