mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-22 16:23:54 +01:00
bce0faa1c2
* init daemon crate * wip * minimal functioning daemon, needs cleanup for sure * better errors * add signal cleanup * logging * things * add sync worker * move daemon crate * 30s -> 5mins * make clippy happy * fix stuff maybe? * fmt * trim packages * rate limit fix * more protoc huh * this makes no sense, why linux why * can it install literally just curl * windows in ci is slow, and all the newer things will not work there. disable the daemon feature and it will build * add daemon feature * maybe this * ok wut where is protoc * try setting protoc * hm * try copying protoc * remove optional * add cross config * idk nix * does nix want this? * some random pkg I found does this * uh oh * hack, be gone! * update contributing
40 lines
1.1 KiB
TOML
40 lines
1.1 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.2.0" }
|
|
atuin-server-database = { path = "../atuin-server-database", version = "18.2.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.7.4"
|
|
axum-server = { version = "0.6.0", features = ["tls-rustls"] }
|
|
fs-err = { workspace = true }
|
|
tower = { workspace = true }
|
|
tower-http = { version = "0.5.1", features = ["trace"] }
|
|
reqwest = { workspace = true }
|
|
rustls = "0.21"
|
|
rustls-pemfile = "2.1"
|
|
argon2 = "0.5.3"
|
|
semver = { workspace = true }
|
|
metrics-exporter-prometheus = "0.12.1"
|
|
metrics = "0.21.1"
|