strafe-project/fixed_wide_vectors/Cargo.toml

15 lines
314 B
TOML
Raw Normal View History

2024-08-23 20:00:22 +00:00
[package]
2024-08-23 22:25:12 +00:00
name = "fixed_wide_vectors"
2024-08-23 20:00:22 +00:00
version = "0.1.0"
edition = "2021"
2024-08-27 00:28:33 +00:00
[features]
default=["wide_traits"]
wide_traits=["dep:wide_traits"]
2024-08-23 20:00:22 +00:00
[dependencies]
2024-08-27 00:28:33 +00:00
wide_traits = { version = "0.1.0", path = "../wide_traits", optional = true }
2024-08-27 00:44:11 +00:00
[dev-dependencies]
fixed_wide = { version = "0.1.0", path = "../fixed_wide" }