summary refs log tree commit diff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorSophie Forrest <git@sophieforrest.com>2024-09-11 18:14:35 +1200
committerSophie Forrest <git@sophieforrest.com>2024-09-11 18:14:35 +1200
commit2acec90f5c1576e3fbceff218f781225ee6efdb7 (patch)
treed21184b54484a93bb6573ad7869e63b734dd437e /Cargo.lock
parentc368412ffd6be8332f12d0a4d8418faf70448fbc (diff)
feat: initial work on nom parsers
Diffstat (limited to '')
-rw-r--r--Cargo.lock17
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cb0869c..af77657 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -692,6 +692,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
 
 [[package]]
+name = "minimal-lexical"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
+
+[[package]]
 name = "miniz_oxide"
 version = "0.8.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -736,6 +742,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
 
 [[package]]
+name = "nom"
+version = "7.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
+dependencies = [
+ "memchr",
+ "minimal-lexical",
+]
+
+[[package]]
 name = "nu-ansi-term"
 version = "0.46.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1772,6 +1788,7 @@ name = "vuw_course_scraper"
 version = "0.1.0"
 dependencies = [
  "futures-util",
+ "nom",
  "reqwest",
  "scraper",
  "serde",