aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-common/Cargo.toml
blob: 85e41ef6c0c78ee83d98888893fb891399b39ff9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "atuin-common"
edition = "2021"
description = "common library for atuin"

rust-version = { workspace = true }
version = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
time = { workspace = true }
serde = { workspace = true }
uuid = { workspace = true }
rand = { workspace = true }
typed-builder = { workspace = true }
eyre = { workspace = true }
sqlx = { workspace = true }
semver = { workspace = true }
thiserror = { workspace = true }
sysinfo = "0.30.7"

lazy_static = "1.4.0"

[dev-dependencies]
pretty_assertions = { workspace = true }