From dae4f63955853b5654d98f0e44a669de02022f01 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 3 Jan 2023 12:17:38 -0500 Subject: [PATCH] Update dependencies --- Cargo.lock | 4 ++-- Cargo.toml | 29 +++++++++++------------------ 2 files changed, 13 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6b607c..cf1fdba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1889,8 +1889,8 @@ dependencies = [ [[package]] name = "splash-rs" -version = "0.2.1" -source = "git+https://git.shadowfacts.net/shadowfacts/splash-rs.git#9aa089fd09f551cf4b6293a55f0b01610bc263c3" +version = "0.2.2" +source = "git+https://git.shadowfacts.net/shadowfacts/splash-rs.git#dec0eb3299f62f808c6fbd56d3186d3339850cde" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 04dbda0..65995ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ rsass = "0.25" rss = { version = "2.0", features = ["atom"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -splash-rs = { version = "0.2.0", git = "https://git.shadowfacts.net/shadowfacts/splash-rs.git" } +splash-rs = { version = "0.2.2", git = "https://git.shadowfacts.net/shadowfacts/splash-rs.git" } sqlx = { version = "0.5", features = ["runtime-tokio-native-tls", "sqlite"] } thiserror = "1.0" tokio = { version = "1.18", features = ["full"] } @@ -44,32 +44,25 @@ tokio-stream = { version = "0.1.8", features = ["fs"] } toml = "0.5" tower = "0.4" tower-http = { version = "0.3", features = ["fs"] } -tree-sitter-bash = "0.20" +# should be from crates.io +tree-sitter-bash = { version = "0.20", git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-bash.git" } tree-sitter-c = "0.20" -tree-sitter-css = { version = "0.20", git = "https://github.com/tree-sitter/tree-sitter-css.git" } +# should be https://github.com/tree-sitter/tree-sitter-css.git +tree-sitter-css = { version = "0.20", git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-css.git" } tree-sitter-elixir = { version = "0.19", git = "https://github.com/elixir-lang/tree-sitter-elixir.git" } tree-sitter-highlight = "0.20" -tree-sitter-html = "0.20" -tree-sitter-java = "0.20" +# should be from crates.io +tree-sitter-html = { version = "0.20", git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-html.git" } +# should be from crates.io +tree-sitter-java = { version = "0.20", git = "https://github.com/tree-sitter/tree-sitter-java.git" } tree-sitter-javascript = "0.20" tree-sitter-json = { version = "0.20", git = "https://github.com/tree-sitter/tree-sitter-json.git" } -tree-sitter-objc = { version = "1.0.0", git = "https://github.com/jiyee/tree-sitter-objc.git" } +# should be https://github.com/jiyee/tree-sitter-objc.git +tree-sitter-objc = { version = "1.0.0", git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-objc.git" } tree-sitter-rust = "0.20" unicode-normalization = "0.1.19" url = "2.2" uuid = { version = "1.1", features = ["v4" ] } -[patch.crates-io] -tree-sitter-bash = { git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-bash.git" } -tree-sitter-java = { git = "https://github.com/tree-sitter/tree-sitter-java.git" } -tree-sitter-html = { git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-html.git" } -# openssl-src = { path = "../openssl-src-rs" } - -[patch."https://github.com/tree-sitter/tree-sitter-css.git"] -tree-sitter-css = { git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-css.git" } - -[patch."https://github.com/jiyee/tree-sitter-objc.git"] -tree-sitter-objc = { git = "https://git.shadowfacts.net/shadowfacts/tree-sitter-objc.git" } - [target.'cfg(target_os = "ios")'.dependencies] openssl = { version = "0.10", features = ["vendored"] }