nyanoblog/Cargo.toml
fef 3d71b04338
ap: refactor to use custom vocab and iri types
IndexVocabulary and IriIndex have been replaced
with NyaVocabulary and NyaIri, and the JSON-LD
namespaces are defined through a proc macro now
2023-08-10 06:41:16 +02:00

45 lines
1.1 KiB
TOML

[package]
name = "nyanoblog"
edition = "2021"
version.workspace = true
[workspace]
members = [
"macros"
]
[workspace.package]
version = "0.1.0"
[dependencies]
nyanoblog-macros = { path = "./macros" }
actix-rt = "2.7"
actix-web = { version = "4", features = ["rustls"] }
argon2 = "0.5.1"
async-trait = "0.1.59"
base64 = "0.21"
bytes = "1.3"
chrono = { version = "0.4", features = [ "alloc", "clock", "serde", "std" ] }
dotenvy = "0.15.6"
futures = "0.3"
hashbrown = "0.13.1"
iref = "2.2"
json-ld = { version = "0.15.0" }
jsonwebtoken = { version = "8", default-features = false }
langtag = "0.3.4"
locspan = "0.7"
log = "0.4"
mime = "0.3.17"
pretty_env_logger = "0.5.0"
rand = "0.8"
rdf-types = "0.15.4"
reqwest = { version = "0.11", features = [ "rustls-tls" ] }
rsa = { version = "0.9.2", features = [ "sha2" ] }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
serde_test = "1.0"
sqlx = { version = "0.7.1", features = [ "chrono", "postgres", "runtime-tokio", "tls-rustls", "uuid" ] }
static-iref = "2"
tokio = "1.23"
uuid = { version = "1.4", features = [ "v4", "v7", "serde" ] }