forked from alexheretic/mtd-vat-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1016 Bytes
/
Cargo.toml
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
[package]
name = "mtd-vat-cli"
version = "1.0.4"
edition = "2021"
description = "CLI tool to query & submit UK VAT returns"
repository = "https://github.com/alexheretic/mtd-vat-cli"
keywords = ["mtd", "vat"]
license = "MIT"
readme = "README.md"
[[bin]]
name = "mtd-vat"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.62"
async-trait = "0.1.57"
axum = "0.8"
blake3 = "1.3.1"
chrono = "0.4.22"
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
console = "0.15.1"
local-ip-address = "0.6"
mac_address = "1.1.3"
os_info = "3.5.0"
percent-encoding = "2.1.0"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "http2"] }
serde = { version = "1.0.144", features = ["derive"] }
tokio = { version = "1.34", features = ["macros"] }
webbrowser = "1"
whoami = "1.2.1"
[target.'cfg(target_os = "linux")'.dependencies]
board_id = "0.1.0"
[features]
default = []
# Use sandbox urls for testing
sandbox = []
[profile.release]
lto = true
opt-level = "s"
strip = true