-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 1.03 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 1.03 KB
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
[package]
name = "packrat"
version = "0.1.4-2026.aug.22"
edition = "2021"
rust-version = "1.75"
description = "Packrat — a locally-hostable inventory for garages, sheds and storage rooms"
license = "GPL-3.0-only"
[dependencies]
axum = { version = "0.8", features = ["multipart", "macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "signal", "io-util", "time"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rusqlite = { version = "0.32", features = ["bundled"] }
r2d2 = "0.8"
r2d2_sqlite = "0.25"
qrcode = { version = "0.14", default-features = false, features = ["svg"] }
rand = "0.8"
mime_guess = "2"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
tokio-stream = { version = "0.1.19", features = ["sync"] }
futures-core = "0.3.34"
libc = "0.2.189"
[[bench]]
name = "inventory"
harness = false
[profile.release]
opt-level = 2
strip = true
[dev-dependencies]
criterion = { version = "0.5.1", default-features = false, features = ["cargo_bench_support"] }