summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 8fb8dd953b1936ff9500b2dcfe4f40b5d6732533 (plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
# Crate temp-postgres on crates.io is a library of a different project.
name = "temp-postgres-command"
version = "0.4.0"
edition = "2024"
authors = ["Stefan Kreutz <mail@skreutz.com>"]
description = "Run the PostgreSQL server off a temporary data directory"
readme = "README.md"
repository = "https://git.skreutz.com/temp-postgres.git"
license = "MIT OR Apache-2.0"
keywords = ["temporary", "postgresql", "database"]
categories = ["command-line-utilities", "database", "development-tools"]
publish = true

[lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"

[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = [
  "derive",
  "unstable-markdown",
  "env",
  "string",
] }
color-print = "0.3.7"
humantime = "2.3.0"
nix = { version = "0.31.2", features = ["signal"] }
tempfile = "3.27.0"
tokio = { version = "1.52.1", features = [
  "process",
  "rt",
  "macros",
  "rt-multi-thread",
  "signal",
  "time",
  "fs",
] }
tokio-util = "0.7.18"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
url = "2.5.8"

[dev-dependencies]
assert_cmd = "2.2.1"
assert_fs = "1.1.3"
predicates = "3.1.4"
testresult = "0.4.1"

[build-dependencies]
vergen-gitcl = "9.1.0"

[[bin]]
name = "temp-postgres"
path = "src/main.rs"
Generated by cgit. See skreutz.com for my tech blog and contact information.