aboutsummaryrefslogtreecommitdiff
path: root/azalea-auth
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-02-02 21:17:28 +0000
committermat <git@matdoes.dev>2025-02-02 21:17:28 +0000
commit8d110a9f7c568fd52fc6c213d707206287311319 (patch)
tree6dfed16120460fd726a09a779c5a1387cfa0baf1 /azalea-auth
parentb08d3d55d7351eff6e27a09d732078c038539958 (diff)
downloadazalea-drasl-8d110a9f7c568fd52fc6c213d707206287311319.tar.xz
cleanup, fix warnings
Diffstat (limited to 'azalea-auth')
-rw-r--r--azalea-auth/Cargo.toml22
1 files changed, 11 insertions, 11 deletions
diff --git a/azalea-auth/Cargo.toml b/azalea-auth/Cargo.toml
index 01e1952f..c8760d1f 100644
--- a/azalea-auth/Cargo.toml
+++ b/azalea-auth/Cargo.toml
@@ -1,26 +1,26 @@
[package]
name = "azalea-auth"
description = "A port of Mojang's Authlib and launcher authentication."
-version = { workspace = true }
-edition = { workspace = true }
-license = { workspace = true }
-repository = { workspace = true }
+version.workspace = true
+edition.workspace = true
+license.workspace = true
+repository.workspace = true
[dependencies]
azalea-buf = { path = "../azalea-buf", version = "0.11.0" }
azalea-crypto = { path = "../azalea-crypto", version = "0.11.0" }
-base64 = { workspace = true }
+base64.workspace = true
chrono = { workspace = true, features = ["serde"] }
-md-5 = { workspace = true }
+md-5.workspace = true
reqwest = { workspace = true, features = ["json", "rustls-tls"] }
-rsa = { workspace = true }
+rsa.workspace = true
serde = { workspace = true, features = ["derive"] }
-serde_json = { workspace = true }
-thiserror = { workspace = true }
+serde_json.workspace = true
+thiserror.workspace = true
tokio = { workspace = true, features = ["fs"] }
-tracing = { workspace = true }
+tracing.workspace = true
uuid = { workspace = true, features = ["serde", "v3"] }
[dev-dependencies]
-env_logger = { workspace = true }
+env_logger.workspace = true
tokio = { workspace = true, features = ["full"] }