2021-04-20 22:53:07 +02:00
|
|
|
[package]
|
|
|
|
name = "atuin-common"
|
2023-09-11 10:26:05 +02:00
|
|
|
edition = "2021"
|
2021-04-20 22:53:07 +02:00
|
|
|
description = "common library for atuin"
|
2023-04-14 21:18:58 +02:00
|
|
|
|
2023-09-11 10:26:05 +02:00
|
|
|
rust-version = { workspace = true }
|
2023-04-14 21:18:58 +02:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2021-04-20 22:53:07 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-11 10:26:05 +02:00
|
|
|
time = { workspace = true }
|
2023-04-14 21:18:58 +02:00
|
|
|
serde = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
2023-06-14 22:18:24 +02:00
|
|
|
typed-builder = { workspace = true }
|
2023-06-26 08:52:37 +02:00
|
|
|
eyre = { workspace = true }
|
2023-07-14 21:44:08 +02:00
|
|
|
sqlx = { workspace = true }
|
2023-12-20 10:03:04 +01:00
|
|
|
semver = { workspace = true }
|
2024-04-10 14:01:48 +02:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
sysinfo = "0.30.7"
|
2023-12-20 10:03:04 +01:00
|
|
|
|
|
|
|
lazy_static = "1.4.0"
|
2023-06-26 08:52:37 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-14 21:44:08 +02:00
|
|
|
pretty_assertions = { workspace = true }
|