forked from omert11/zammad-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 777 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 777 Bytes
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 = "zammad-cli"
version = "0.1.0"
edition = "2021"
description = "CLI for Zammad helpdesk — search/manage tickets, organizations, users"
license = "MIT"
repository = "https://github.com/omert11/zammad-cli"
[[bin]]
name = "zammad-cli"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6", features = ["derive"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "query", "rustls", "webpki-roots"] }
tokio = { version = "1.52", features = ["macros", "rt-multi-thread", "fs"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
colored = "3.1"
comfy-table = "7.2"
futures = "0.3"
base64 = "0.22"
mime_guess = "2.0"
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = "z"