fef
64739eeead
This still lacks caching, but it is slightly more advanced than just using the ReqwestLoader that the json_ld crate provides.
31 lines
803 B
TOML
31 lines
803 B
TOML
[package]
|
|
name = "nyanoblog"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-rt = "2.7"
|
|
actix-web = "4"
|
|
argon2 = "0.4"
|
|
async-trait = "0.1.59"
|
|
bytes = "1.3"
|
|
chrono = { version = "0.4", features = [ "alloc", "clock", "serde" ] }
|
|
dotenvy = "0.15.6"
|
|
futures = "0.3"
|
|
hashbrown = "0.13"
|
|
iref = "2.2"
|
|
json-ld = { version = "0.12" }
|
|
jsonwebtoken = { version = "8", default-features = false }
|
|
locspan = "0.7"
|
|
log = "0.4"
|
|
mime = "0.3"
|
|
pretty_env_logger = "0.4"
|
|
rdf-types = "0.12"
|
|
reqwest = { version = "0.11", features = [ "rustls" ] }
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
serde_json = "1.0"
|
|
serde_test = "1.0"
|
|
sqlx = { version = "0.6", features = [ "chrono", "postgres", "runtime-actix-rustls", "uuid" ] }
|
|
static-iref = "2"
|
|
tokio = "1.23"
|
|
uuid = { version = "1.2", features = [ "v4" ] }
|