mirror of
https://github.com/adriankumpf/tesla_auth.git
synced 2026-02-27 09:54:03 +08:00
8507ca2ff3
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.134 to 1.0.136. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.134...v1.0.136) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
1011 B
TOML
31 lines
1011 B
TOML
[package]
|
|
name = "tesla_auth"
|
|
version = "0.4.1"
|
|
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.53"
|
|
argh = "0.1.7"
|
|
log = "0.4.14"
|
|
oauth2 = "4.1.0"
|
|
reqwest = { version = "0.11.9", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1.0.136", default-features = false, features = ["derive"] }
|
|
serde_json = "1.0.78"
|
|
simple_logger = { version = "2.1.0", default-features = false, features = ["stderr"] }
|
|
static_vcruntime = "1.5.1"
|
|
wry = { version = "0.12.2", default-features = false, features = [] }
|
|
|
|
[profile.release]
|
|
opt-level = "z" # Optimize for size.
|
|
lto = true
|
|
codegen-units = 1
|