mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-23 00:34:20 +01:00
8c0103dfff
Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.3.5 to 0.4.4. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.3.5...tower-http-0.4.4) --- updated-dependencies: - dependency-name: tower-http dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
969 B
TOML
36 lines
969 B
TOML
[package]
|
|
name = "atuin-server"
|
|
edition = "2018"
|
|
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 = "16.0.0" }
|
|
atuin-server-database = { path = "../atuin-server-database", version = "16.0.0" }
|
|
|
|
tracing = "0.1"
|
|
time = { workspace = true }
|
|
eyre = { workspace = true }
|
|
uuid = { workspace = true }
|
|
config = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
base64 = { workspace = true }
|
|
rand = { workspace = true }
|
|
tokio = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
axum = "0.6.4"
|
|
http = "0.2"
|
|
fs-err = { workspace = true }
|
|
tower = "0.4"
|
|
tower-http = { version = "0.4", features = ["trace"] }
|
|
reqwest = { workspace = true }
|
|
argon2 = "0.5.0"
|
|
semver = { workspace = true }
|