c05d285042
* Try different workspace structure Move main crate (atuin) to be on the same level with other crates in this workspace * extract common dependencies to the workspace definition * fix base64 v0.21 deprecation warning * questionable: update deps & fix chrono deprecations possible panic sites are unchanged, they're just more visible now * Revert "questionable: update deps & fix chrono deprecations" This reverts commit 993e60f8dea81a1625a04285a617959ad09a0866.
35 lines
920 B
TOML
35 lines
920 B
TOML
[package]
|
|
name = "atuin-server"
|
|
edition = "2018"
|
|
description = "server library for atuin"
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[dependencies]
|
|
atuin-common = { path = "../atuin-common", version = "14.0.0" }
|
|
|
|
tracing = "0.1"
|
|
chrono = { workspace = true }
|
|
eyre = { workspace = true }
|
|
uuid = { workspace = true }
|
|
whoami = { workspace = true }
|
|
config = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sodiumoxide = { workspace = true }
|
|
base64 = { workspace = true }
|
|
rand = { workspace = true }
|
|
tokio = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
axum = "0.6.4"
|
|
http = "0.2"
|
|
fs-err = { workspace = true }
|
|
chronoutil = "0.2.3"
|
|
tower = "0.4"
|
|
tower-http = { version = "0.3", features = ["trace"] }
|
|
reqwest = { workspace = true }
|