diff options
Diffstat (limited to 'code/Cargo.lock')
-rw-r--r-- | code/Cargo.lock | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/code/Cargo.lock b/code/Cargo.lock index b9776eb..a2766ae 100644 --- a/code/Cargo.lock +++ b/code/Cargo.lock @@ -46,6 +46,7 @@ version = "0.1.0" dependencies = [ "anyhow", "clap", + "iso8601", "laby", "markdown", ] @@ -121,6 +122,15 @@ dependencies = [ ] [[package]] +name = "iso8601" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f21abb3d09069861499d93d41a970243a90e215df0cf763ac9a31b9b27178d0" +dependencies = [ + "nom", +] + +[[package]] name = "itoap" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -189,6 +199,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "nom" +version = "7.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] name = "once_cell" version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" |