diff options
author | Joris | 2024-10-14 22:30:47 +0200 |
---|---|---|
committer | Joris | 2024-10-14 22:30:47 +0200 |
commit | 924b10b0cd6c09fa7afa58e6f7a068646d1e56af (patch) | |
tree | 3f20b5db131e54ceb73f6e2b932525e9fe6f2c63 /Cargo.lock | |
parent | a126fba82cb4f9f4467b130fca7fd5a269fe3a5e (diff) |
Use nom to parse linesmain
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -251,6 +251,7 @@ dependencies = [ "chrono", "clap", "crossterm", + "nom", "ratatui", "rusqlite", "rusqlite_migration", @@ -378,6 +379,18 @@ dependencies = [ ] [[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] name = "mio" version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -390,6 +403,16 @@ dependencies = [ ] [[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 = "num-traits" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" |