Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I1eb47cd79cd4145c56af966f6756fe1d6a6a6964
35 lines
978 B
TOML
35 lines
978 B
TOML
[package]
|
|
name = "pinakes-server"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
pinakes-core = { path = "../pinakes-core" }
|
|
pinakes-plugin-api = { path = "../pinakes-plugin-api" }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
chrono = { workspace = true }
|
|
uuid = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
axum = { workspace = true }
|
|
axum-server = { version = "0.7", features = ["tls-rustls"] }
|
|
tower = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
governor = { workspace = true }
|
|
tower_governor = { workspace = true }
|
|
tokio-util = { version = "0.7", features = ["io"] }
|
|
argon2 = { workspace = true }
|
|
rand = "0.9"
|
|
percent-encoding = "2"
|
|
http = "1.0"
|
|
|
|
[dev-dependencies]
|
|
http-body-util = "0.1"
|
|
tempfile = "3"
|