Skip to content

Commit a3dc410

Browse files
authoredJan 27, 2025
fixed impl_glam|mint|vek feature flags being an illusion of choice (Rust-GPU#69)
1 parent 5d801f4 commit a3dc410

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed
 

‎crates/cust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ vek = { version = "0.15.1", optional = true, default-features = false }
2424
bytemuck = { version = "1.7.3", optional = true }
2525

2626
[features]
27-
default= ["bytemuck"]
27+
default= ["bytemuck", "impl_glam", "impl_mint", "impl_vek"]
2828
impl_glam = ["cust_core/glam", "glam"]
2929
impl_mint = ["cust_core/mint", "mint"]
3030
impl_vek = ["cust_core/vek", "vek"]

‎crates/cust_core/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,3 @@ mint = { version = "^0.5", optional = true }
1414
half = { version = "1.8", optional = true }
1515
num-complex = { version = "0.4", optional = true }
1616
cust_derive = { path = "../cust_derive", version = "0.2" }
17-
18-
[features]
19-
default = ["vek", "glam", "mint"]

0 commit comments

Comments
 (0)
Please sign in to comment.