1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-12-23 09:31:24 +00:00

Update deps

This commit is contained in:
Felix Ableitner 2024-12-17 09:52:01 +01:00
parent 7e607c4dd7
commit 685f6fed4b
3 changed files with 288 additions and 290 deletions

523
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -31,57 +31,57 @@ unwrap_used = "deny"
# frontend and shared deps
[dependencies]
leptos = "0.7.0"
leptos_meta = "0.7.0"
leptos_router = "0.7.0"
chrono = { version = "0.4.38", features = ["serde"] }
leptos = "0.7.1"
leptos_meta = "0.7.1"
leptos_router = "0.7.1"
chrono = { version = "0.4.39", features = ["serde"] }
hex = "0.4.3"
rand = "0.8.5"
getrandom = { version = "0.2", features = ["js"] }
serde_json = "1.0.132"
serde_json = "1.0.133"
sha2 = "0.10.8"
uuid = { version = "1.11.0", features = ["serde"] }
serde = { version = "1.0.215", features = ["derive"] }
url = { version = "2.5.3", features = ["serde"] }
serde = { version = "1.0.216", features = ["derive"] }
url = { version = "2.5.4", features = ["serde"] }
log = "0.4"
tracing = "0.1.40"
tracing = "0.1.41"
once_cell = "1.20.2"
console_error_panic_hook = "0.1.7"
time = "0.3.36"
time = "0.3.37"
markdown-it = "0.6.1"
smart-default = "0.7.1"
katex = { version = "0.4", default-features = false }
markdown-it-block-spoiler = "1.0.0"
markdown-it-block-spoiler = "1.0.1"
markdown-it-heading-anchors = "0.3.0"
markdown-it-footnote = "0.2.0"
markdown-it-sub = "1.0.0"
markdown-it-sup = "1.0.0"
leptos-use = "0.14.0-rc3"
markdown-it-sub = "1.0.1"
markdown-it-sup = "1.0.1"
leptos-use = "0.14.0"
codee = "0.2.0"
wasm-bindgen = "=0.2.99"
gloo-net = "0.6.0"
console_log = "1.0.0"
send_wrapper = "0.6.0"
web-sys = "0.3.72"
http = "1.1.0"
web-sys = "0.3.76"
http = "1.2.0"
serde_urlencoded = "0.7.1"
# backend-only deps
[target.'cfg(not(target_family = "wasm"))'.dependencies]
axum = "0.7.7"
axum = "0.7.9"
axum-macros = "0.4.2"
axum-extra = { version = "0.9.4", features = ["cookie"] }
tokio = { version = "1.41.1", features = ["full"] }
tower-http = { version = "0.6.1", features = [
axum-extra = { version = "0.9.6", features = ["cookie"] }
tokio = { version = "1.42.0", features = ["full"] }
tower-http = { version = "0.6.2", features = [
"cors",
"fs",
"compression-full",
] }
activitypub_federation = { version = "0.6.0", features = [
activitypub_federation = { version = "0.6.1", features = [
"axum",
"diesel",
], default-features = false }
diesel = { version = "2.2.4", default-features = false, features = [
diesel = { version = "2.2.6", default-features = false, features = [
"postgres",
"chrono",
"uuid",
@ -91,18 +91,18 @@ diesel-derive-newtype = { version = "2.1.2" }
diesel_migrations = { version = "2.2.0" }
doku = { version = "0.21.1" }
jsonwebtoken = { version = "9.3.0" }
leptos_axum = { version = "0.7.0" }
bcrypt = { version = "0.15.1" }
leptos_axum = { version = "0.7.1" }
bcrypt = "0.16.0"
diffy = { version = "0.4.0" }
enum_delegate = { version = "0.2.0" }
async-trait = { version = "0.1.83" }
config = { version = "0.14.1", features = ["toml"] }
tower = { version = "0.5.1" }
tower = { version = "0.5.2" }
tower-layer = { version = "0.3.3" }
reqwest = { version = "0.12.9", features = ["json", "cookies"] }
futures = "0.3.31"
env_logger = { version = "0.11.5", default-features = false }
anyhow = "1.0.93"
anyhow = "1.0.94"
include_dir = "0.7.4"
mime_guess = "2.0.5"

View file

@ -2,7 +2,10 @@ use katex;
use markdown_it::{
parser::inline::{InlineRule, InlineState},
plugins::cmark::block::{heading::ATXHeading, lheading::SetextHeader},
MarkdownIt, Node, NodeValue, Renderer,
MarkdownIt,
Node,
NodeValue,
Renderer,
};
use once_cell::sync::OnceCell;