mirror of
https://github.com/adriankumpf/tesla_auth.git
synced 2026-02-27 09:54:03 +08:00
Release v0.10.0
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## [0.10.0] - 2024-12-30
|
||||
|
||||
- Upgrade wry to 0.47
|
||||
- Build binary for `aarch64-apple-darwin`
|
||||
|
||||
## [0.9.0] - 2023-11-25
|
||||
|
||||
- Require `libxdo` on Linux
|
||||
@@ -87,6 +92,7 @@
|
||||
|
||||
## [0.1.0] - 2021-09-17
|
||||
|
||||
[0.10.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.9.0...v0.10.0
|
||||
[0.9.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.8.0...v0.9.0
|
||||
[0.8.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.7.0...v0.8.0
|
||||
[0.7.0]: https://github.com/adriankumpf/tesla_auth/compare/v0.6.3...v0.7.0
|
||||
|
||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -3020,7 +3020,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tesla_auth"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"argh",
|
||||
|
||||
15
Cargo.toml
15
Cargo.toml
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tesla_auth"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
description = "Tesla token generator"
|
||||
homepage = "https://github.com/adriankumpf/tesla_auth"
|
||||
repository = "https://github.com/adriankumpf/tesla_auth"
|
||||
@@ -18,11 +18,16 @@ 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"] }
|
||||
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" ] }
|
||||
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]
|
||||
@@ -30,7 +35,7 @@ static_vcruntime = "2.0.0"
|
||||
|
||||
[profile.release]
|
||||
strip = "debuginfo"
|
||||
opt-level = "z" # Optimize for size.
|
||||
opt-level = "z" # Optimize for size.
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user