diff options
author | Vika <vika@fireburn.ru> | 2024-12-30 22:50:27 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-12-30 22:50:27 +0300 |
commit | fad3c4d38e62165302053be27b45a027106d73d9 (patch) | |
tree | a15c35e2cab19e3b20ba7ef20f568ea73c5f0386 | |
parent | 69868df82e6f7633e5b61268e3a3994b5a124adc (diff) | |
download | kittybox-fad3c4d38e62165302053be27b45a027106d73d9.tar.zst |
microformats: 0.9.1 -> 0.12.0
Change-Id: Ief031acfc014bf3b74874f778600ee214cf61301
-rw-r--r-- | Cargo.lock | 19 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | templates-neo/Cargo.toml | 2 | ||||
-rw-r--r-- | templates/Cargo.toml | 4 |
4 files changed, 8 insertions, 21 deletions
diff --git a/Cargo.lock b/Cargo.lock index f45a2bb..53696bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2077,10 +2077,11 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "microformats" -version = "0.9.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed8bbf237d3068b89f1e445b9789bd0e5731638a018227722348cfc84b967fb8" +checksum = "8d1df05856cd05525b7f607354f0f8ef14e25c77efc8321a26140ce6cf5d6ca0" dependencies = [ + "http", "lazy_static", "microformats-types", "regex", @@ -2090,7 +2091,6 @@ dependencies = [ "swc_html_ast", "swc_html_codegen", "swc_html_parser", - "swc_html_visit", "thiserror", "time", "tracing", @@ -3882,19 +3882,6 @@ dependencies = [ ] [[package]] -name = "swc_html_visit" -version = "0.33.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cffd11c6331e830a6f954597edd612d9393b6a4edb6e88004e5d7e84ee73b570" -dependencies = [ - "serde", - "swc_atoms", - "swc_common", - "swc_html_ast", - "swc_visit", -] - -[[package]] name = "swc_macros_common" version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/Cargo.toml b/Cargo.toml index fd6311f..e0047b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ default-run = "kittybox" autobins = false [features] -default = ["rustls", "postgres"] +default = ["rustls", "postgres", "cli"] #util = ["anyhow"] #migration = ["util"] webauthn = ["openssl", "dep:webauthn"] @@ -154,7 +154,7 @@ version = "^0.12.5" default-features = false features = ["gzip", "brotli", "json", "stream"] [dependencies.microformats] -version = "^0.9.1" +version = "^0.12.0" #git = "https://gitlab.com/maxburon/microformats-parser" [dependencies.clap] diff --git a/templates-neo/Cargo.toml b/templates-neo/Cargo.toml index 22865f0..a632a2a 100644 --- a/templates-neo/Cargo.toml +++ b/templates-neo/Cargo.toml @@ -38,4 +38,4 @@ path = "../util" version = "0.2.0" path = "../indieauth" [dependencies.microformats] -version="^0.9.1" \ No newline at end of file +version="^0.12.0" diff --git a/templates/Cargo.toml b/templates/Cargo.toml index 607f29e..cdfdf62 100644 --- a/templates/Cargo.toml +++ b/templates/Cargo.toml @@ -16,7 +16,7 @@ rand = "^0.8.5" version = "^0.3.34" features = ["parsing", "formatting"] [dev-dependencies.microformats] -version="^0.9.1" +version="^0.12.0" [dependencies] ellipse = "^0.2.0" @@ -33,4 +33,4 @@ version = "0.3.0" path = "../util" [dependencies.kittybox-indieauth] version = "0.2.0" -path = "../indieauth" \ No newline at end of file +path = "../indieauth" |