diff options
Diffstat (limited to 'crates/core/Cargo.toml')
-rw-r--r-- | crates/core/Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index baf4b00..f7c0d75 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -11,8 +11,13 @@ edition = "2024" license = "AGPL-3.0" [features] +default = ["core-error"] + # Enable the use of core::fmt in azimuth-core. # +# This enables assertions (debug or otherwise) in addition to more obvious +# places where core::fmt would be pulled in. +# # Gated behind a feature to reduce code bloat where it is undesirable. core-fmt = [] @@ -20,3 +25,10 @@ core-fmt = [] # # Gated behind a feature due to its dependency upon core::fmt. core-error = ["core-fmt"] + +[dependencies] +generativity.workspace = true + +[dev-dependencies] +proptest.workspace = true +proptest-state-machine.workspace = true |