2023-06-12 10:04:35 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-server-postgres"
|
2024-01-26 18:59:06 +01:00
|
|
|
edition = "2021"
|
2023-06-12 10:04:35 +02:00
|
|
|
description = "server postgres database library for atuin"
|
|
|
|
|
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-23 14:38:41 +02:00
|
|
|
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.3" }
|
|
|
|
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0-beta.3" }
|
2023-06-12 10:04:35 +02:00
|
|
|
|
2024-03-12 19:02:44 +01:00
|
|
|
eyre = { workspace = true }
|
2023-06-12 10:04:35 +02:00
|
|
|
tracing = "0.1"
|
2023-09-11 10:26:05 +02:00
|
|
|
time = { workspace = true }
|
2023-06-12 10:04:35 +02:00
|
|
|
serde = { workspace = true }
|
|
|
|
sqlx = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
2023-07-14 21:44:08 +02:00
|
|
|
uuid = { workspace = true }
|
2024-07-02 15:47:41 +02:00
|
|
|
metrics = "0.21.1"
|
2023-06-12 10:04:35 +02:00
|
|
|
futures-util = "0.3"
|
2024-06-24 09:04:47 +02:00
|
|
|
url = "2.5.2"
|