diff options
Diffstat (limited to 'lib/Cargo.toml')
-rw-r--r-- | lib/Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Cargo.toml b/lib/Cargo.toml index ddd300b..1513795 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -11,10 +11,16 @@ description = "Generate random data" readme = "README.md" keywords = ["random"] +[features] +cgmath = ["dep:cgmath"] +collision = ["cgmath", "dep:collision"] + [dependencies] rand = "0.8.5" generate-random-macro = { version = "0.1.0", path = "../derive-macro" } enumset = { git = "https://github.com/Lymia/enumset", optional = true } +cgmath = { version = "0.17.0", optional = true } +collision = { version = "0.20.1", optional = true } [dev-dependencies] rand_chacha = "0.3.1" |