summary refs log tree commit diff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorAshelyn Rose <git@ashen.earth>2025-04-20 11:49:00 -0600
committerAshelyn Rose <git@ashen.earth>2025-04-20 11:49:00 -0600
commitb115605055e72c5a261f9f024d7db8f508517fc9 (patch)
tree294484b761030772ea3fadeb3a22ae3688528b80 /Cargo.lock
parent55dd47aff347ee882f375b5cf880a299e633f556 (diff)
Started proc_macro parsing - DOES NOT WORK
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7238fe6..5ebe58f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -108,6 +108,14 @@ name = "morgana"
 version = "0.1.0"
 dependencies = [
  "futures",
+ "morgana_proc",
+]
+
+[[package]]
+name = "morgana_proc"
+version = "0.0.0"
+dependencies = [
+ "unsynn",
 ]
 
 [[package]]
@@ -118,6 +126,12 @@ dependencies = [
 ]
 
 [[package]]
+name = "mutants"
+version = "0.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bc0287524726960e07b119cebd01678f852f147742ae0d925e6a520dca956126"
+
+[[package]]
 name = "pin-project-lite"
 version = "0.2.16"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -148,6 +162,12 @@ dependencies = [
 ]
 
 [[package]]
+name = "shadow_counted"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "65da48d447333cebe1aadbdd3662f3ba56e76e67f53bc46f3dd5f67c74629d6b"
+
+[[package]]
 name = "slab"
 version = "0.4.9"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -172,3 +192,14 @@ name = "unicode-ident"
 version = "1.0.18"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
+
+[[package]]
+name = "unsynn"
+version = "0.0.26"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "14013db4ac11f92d4df4b56edb431eab9c1d9f7aee4791f3205b6a1119b83f54"
+dependencies = [
+ "mutants",
+ "proc-macro2",
+ "shadow_counted",
+]