diff options
author | superwhiskers <[email protected]> | 2025-08-27 14:41:19 -0500 |
---|---|---|
committer | superwhiskers <[email protected]> | 2025-09-15 10:55:10 -0500 |
commit | 83751efd734999fc11316a66317250ca53e76726 (patch) | |
tree | f5917c5c0bc8fd5883f7893eb5d4b9853585aea7 /crates/core/Cargo.toml | |
parent | 386279ce28a54002fa91f436d5b60815c537e910 (diff) | |
download | azimuth-83751efd734999fc11316a66317250ca53e76726.tar.gz azimuth-83751efd734999fc11316a66317250ca53e76726.tar.bz2 azimuth-83751efd734999fc11316a66317250ca53e76726.zip |
initial expression implementation
Change-Id: I6a6a69640c133bce112891bba09033b08e7c0dec
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 |