Files
archived-tesla-auth/Cargo.toml
T
2025-04-10 17:17:13 +02:00

46 lines
1.3 KiB
TOML

[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 = "2024"
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.97"
argh = "0.1.13"
log = "0.4.27"
muda = "0.16.1"
oauth2 = { version = "5.0.0", features = ["reqwest-blocking" ] }
reqwest = { version = "0.12.15", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
serde_json = "1.0.140"
simple_logger = { version = "5.0.0", default-features = false, features = [
"stderr",
] }
tao = { version = "0.33", default-features = false, features = ["rwh_06"] }
wry = { version = "0.51.0", 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"