aboutsummaryrefslogtreecommitdiffstats
path: root/crates/turtle/Cargo.toml
blob: 547f85302b343a14e9027f6009977b84eefb70c0 (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
31
32
33
34
35
36
[package]
name = "turtle"
edition = "2024"
description = "turtle - library for sqlite shell history"
readme = "./README.md"

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

[dependencies]
eyre = "0.6"
hyper-util = "0.1"
prost = "0.14"
regex = "1.10.5"
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "time", "postgres", "uuid", "sqlite", "regexp"] }
time = { version = "0.3.47", features = [ "serde-human-readable", "macros", "local-offset", "macros", "formatting", "parsing"] }
tokio = { version = "1", features = ["full"] }
tonic = "0.14"
tonic-prost = "0.14"
tower = "0.5"
turtle-common = {workspace = true}
typed-builder = "0.18.2"

[build-dependencies]
protox = "0.9"
tonic-prost-build = "0.14"

[package.metadata.docs.rs]
all-features = true

[lints]
workspace = true