upub/web/Cargo.toml

39 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "upub-web"
version = "0.1.0"
edition = "2021"
authors = [ "alemi <me@alemi.dev>" ]
description = "web frontend for upub"
license = "AGPL-3.0"
keywords = ["activitypub", "upub", "json", "web", "wasm"]
repository = "https://git.alemi.dev/upub.git"
#readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-07-03 04:05:49 +02:00
async-trait = "0.1"
lazy_static = "1.4"
tracing = "0.1"
2024-05-23 05:53:05 +02:00
tracing-subscriber = "0.3"
tracing-subscriber-wasm = "0.1"
console_error_panic_hook = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_default = "0.1"
serde-inline-default = "0.2"
dashmap = "5.5"
2024-04-17 23:08:41 +02:00
leptos = { version = "0.6", features = ["csr", "tracing"] }
leptos_router = { version = "0.6", features = ["csr"] }
leptos-use = { version = "0.10", features = ["serde"] }
reqwest = { version = "0.12", features = ["json"] }
apb = { path = "../apb", features = ["unstructured", "activitypub-fe", "activitypub-counters", "litepub"] }
uriproxy = { path = "../utils/uriproxy/" }
mdhtml = { path = "../utils/mdhtml/" }
futures = "0.3.30"
2024-04-15 22:32:05 +02:00
chrono = { version = "0.4", features = ["serde"] }
jrd = "0.1"
tld = "2.35"
web-sys = { version = "0.3", features = ["Screen"] }
regex = "1.10.5"