-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
45 lines (40 loc) · 1.21 KB
/
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 = "tesla_auth"
version = "0.10.0"
description = "Tesla token generator"
homepage = "https://github.com/adriankumpf/tesla_auth"
repository = "https://github.com/adriankumpf/tesla_auth"
keywords = ["tesla-api", "oauth2", "webview", "cli"]
categories = ["command-line-utilities"]
authors = ["Adrian Kumpf"]
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.95"
argh = "0.1.13"
log = "0.4.22"
muda = "0.15.3"
oauth2 = "4.4.2"
reqwest = { version = "0.12.11", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.217", default-features = false, features = ["derive"] }
serde_json = "1.0.134"
simple_logger = { version = "5.0.0", default-features = false, features = [
"stderr",
] }
tao = { version = "0.31", default-features = false, features = ["rwh_06"] }
wry = { version = "0.47.2", features = ["devtools"] }
[build-dependencies]
static_vcruntime = "2.0.0"
[profile.release]
strip = "debuginfo"
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"