diff options
author | Vika <vika@fireburn.ru> | 2023-02-27 00:22:10 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2023-02-27 00:22:10 +0300 |
commit | c38683eb694dd6078b15f39d8032b7c95ffef126 (patch) | |
tree | 10181d7ea07a292c47454b0c76487df9c7a683bf /kittybox-rs | |
parent | 73e1b1c1bd800d0a32df2f3a6d14600ede96af3e (diff) | |
download | kittybox-c38683eb694dd6078b15f39d8032b7c95ffef126.tar.zst |
update markdown to 1.0.0-alpha.7
Diffstat (limited to 'kittybox-rs')
-rw-r--r-- | kittybox-rs/Cargo.lock | 20 | ||||
-rw-r--r-- | kittybox-rs/Cargo.toml | 2 |
2 files changed, 10 insertions, 12 deletions
diff --git a/kittybox-rs/Cargo.lock b/kittybox-rs/Cargo.lock index 23f4a76..db77aba 100644 --- a/kittybox-rs/Cargo.lock +++ b/kittybox-rs/Cargo.lock @@ -1561,13 +1561,11 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" [[package]] name = "markdown" -version = "0.3.0" +version = "1.0.0-alpha.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef3aab6a1d529b112695f72beec5ee80e729cb45af58663ec902c8fac764ecdd" +checksum = "98de49c677e95e00eaa74c42a0b07ea55e1e0b1ebca5b2cbc7657f288cd714eb" dependencies = [ - "lazy_static", - "pipeline", - "regex", + "unicode-id", ] [[package]] @@ -2108,12 +2106,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] -name = "pipeline" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d15b6607fa632996eb8a17c9041cb6071cb75ac057abd45dece578723ea8c7c0" - -[[package]] name = "pkg-config" version = "0.3.26" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3434,6 +3426,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58" [[package]] +name = "unicode-id" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a" + +[[package]] name = "unicode-ident" version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/kittybox-rs/Cargo.toml b/kittybox-rs/Cargo.toml index cf16896..bb6c021 100644 --- a/kittybox-rs/Cargo.toml +++ b/kittybox-rs/Cargo.toml @@ -73,7 +73,7 @@ hex = "^0.4.3" lazy_static = "^1.4.0" # A macro for declaring lazily evaluated statics in Rust listenfd = "^0.5.0" # A simple library to work with listenfds passed from the outside (systemd/catflap socket activation) #log = "^0.4.14" # A lightweight logging facade for Rust -markdown = "^0.3.0" # Native Rust library for parsing Markdown and (outputting HTML) +markdown = "^1.0.0-alpha.7" # Native Rust library for parsing Markdown and (outputting HTML) newbase60 = "^0.1.3" # A library that implements Tantek Çelik's New Base 60 rand = "^0.8.4" # Random number generators. serde_json = "^1.0.64" # A JSON serialization file format |