-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (35 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
44 lines (35 loc) · 1.01 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
36
37
38
39
40
41
42
43
44
[package]
name = "docbox-cli"
version = "0.9.0"
edition = "2024"
authors = ["Jacobtread <jacobtread@gmail.com>"]
repository = "https://github.com/docbox-nz/docbox-cli"
readme = "./README.md"
license = "MIT"
[dependencies]
# Environment variables
dotenvy = "=0.15.7"
# Command line parser
clap = { version = "=4.5.60", features = ["derive"] }
# Management access
docbox-management = { version = "0.11.0" }
# Asynchronous runtime & Helpers
tokio = { version = "=1.50.0", features = ["full"] }
# Serialization and JSON
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
# Logging
tracing = "=0.1.44"
tracing-subscriber = { version = "=0.3.22", features = ["env-filter"] }
# Error handling
thiserror = "=2.0.18"
eyre = "=0.6.12"
color-eyre = "=0.6.5"
tracing-indicatif = "0.3.13"
comfy-table = "7.2.1"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# [patch.crates-io]
# docbox-management = { version = "0.11.0", path = "../docbox/packages/docbox-management" }