mirror of
https://github.com/atuinsh/atuin.git
synced 2025-03-12 22:21:15 +01:00
These dependencies are unused in actual code, and the test I've removed is a remnant from a move to use an external library -- it was useful to show that the mechanical transformation was correct, but it's only testing that library nowadays.
38 lines
1.2 KiB
TOML
38 lines
1.2 KiB
TOML
[package]
|
|
name = "atuin-server"
|
|
edition = "2021"
|
|
description = "server library for atuin"
|
|
|
|
rust-version = { workspace = true }
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
atuin-common = { path = "../atuin-common", version = "18.4.0" }
|
|
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0" }
|
|
|
|
tracing = { workspace = true }
|
|
time = { workspace = true }
|
|
eyre = { workspace = true }
|
|
config = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rand = { workspace = true }
|
|
tokio = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
axum = "0.7"
|
|
axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
|
|
fs-err = { workspace = true }
|
|
tower = { workspace = true }
|
|
tower-http = { version = "0.5", features = ["trace"] }
|
|
reqwest = { workspace = true }
|
|
rustls = { version = "0.23", features = ["ring"], default-features = false }
|
|
argon2 = "0.5"
|
|
semver = { workspace = true }
|
|
metrics-exporter-prometheus = "0.12.1"
|
|
metrics = "0.21.1"
|
|
postmark = {version= "0.10.2", features=["reqwest", "reqwest-rustls-tls"]}
|