mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-22 16:23:54 +01:00
0d5332a87f
* Prepare release v16.0.0 * Remove debug output * Fix kv dupes if the store already exists * Add limit in frontend as well as sync backend
23 lines
627 B
TOML
23 lines
627 B
TOML
[package]
|
|
name = "atuin-server-postgres"
|
|
edition = "2018"
|
|
description = "server postgres database 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 = "16.0.0" }
|
|
atuin-server-database = { path = "../atuin-server-database", version = "16.0.0" }
|
|
|
|
tracing = "0.1"
|
|
chrono = { workspace = true }
|
|
serde = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
uuid = { workspace = true }
|
|
futures-util = "0.3"
|