Files
archived-tesla-auth/Cargo.toml
T
dependabot[bot] eb2ac7a962 Bump wry from 0.13.3 to 0.14.0
Bumps [wry](https://github.com/tauri-apps/wry) from 0.13.3 to 0.14.0.
- [Release notes](https://github.com/tauri-apps/wry/releases)
- [Changelog](https://github.com/tauri-apps/wry/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/tauri-apps/wry/compare/wry-v0.13.3...wry-v0.14)

---
updated-dependencies:
- dependency-name: wry
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-04-04 11:59:00 +00:00

31 lines
1012 B
TOML

[package]
name = "tesla_auth"
version = "0.4.2"
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.56"
argh = "0.1.7"
log = "0.4.16"
oauth2 = "4.1.0"
reqwest = { version = "0.11.10", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.136", default-features = false, features = ["derive"] }
serde_json = "1.0.79"
simple_logger = { version = "2.1.0", default-features = false, features = ["stderr"] }
static_vcruntime = "1.5.1"
wry = { version = "0.14.0", default-features = false, features = [] }
[profile.release]
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1