about summary refs log tree commit diff stats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorsuperwhiskers <[email protected]>2025-08-27 14:41:19 -0500
committersuperwhiskers <[email protected]>2025-09-15 10:55:10 -0500
commit83751efd734999fc11316a66317250ca53e76726 (patch)
treef5917c5c0bc8fd5883f7893eb5d4b9853585aea7 /Cargo.toml
parent386279ce28a54002fa91f436d5b60815c537e910 (diff)
downloadazimuth-83751efd734999fc11316a66317250ca53e76726.tar.gz
azimuth-83751efd734999fc11316a66317250ca53e76726.tar.bz2
azimuth-83751efd734999fc11316a66317250ca53e76726.zip
initial expression implementation
Change-Id: I6a6a69640c133bce112891bba09033b08e7c0dec
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8f0e019..1b50de4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,6 +4,17 @@ members = [
 ]
 resolver = "3"
 
+[workspace.dependencies]
+# Used to remove indexing checks and to reduce the degree to which code
+# may be misused.
+generativity = "1"
+
+# Used to test some code for greater quality assurance.
+proptest = "1"
+
+# Used to make more thorough tests using `proptest`
+proptest-state-machine = "0.4"
+
 [profile.release]
 opt-level = 3
 codegen-units = 1