From e9d7b2c48fde14b5568e08ae2320cf24ac8b65e8 Mon Sep 17 00:00:00 2001 From: jiaxin Date: Tue, 12 May 2026 10:38:05 +0800 Subject: [PATCH] chore: update cargo manifest --- Cargo.toml | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8654a7b..57288b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,23 +2,39 @@ name = "font_obfuscator" version = "0.1.0" edition = "2024" +rust-version = "1.95" [dependencies] axum = "0.8.9" -tokio = { version = "1.52.1", features = ["full"] } -serde = { version = "1.0.228", features = ["derive"] } -serde_json = "1.0.149" -font-types = "0.11.3" -read-fonts = "0.39.2" -write-fonts = "0.48.1" base64 = "0.22.1" -uuid = { version = "1.23.1", features = ["v7"] } +font-types = "0.11.3" rand = "0.10.1" +read-fonts = "0.39.2" +serde = { + version = "1.0.228", + features = ["derive"], +} +serde_json = "1.0.149" thiserror = "2.0.18" -tower-http = { version = "0.6.8", features = ["cors"] } +tokio = { + version = "1.52.3", + features = ["full"], +} +tower-http = { + version = "0.6.10", + features = ["cors"], +} tracing = "0.1.44" tracing-subscriber = "0.3.23" -ttf2woff2 = { version = "0.11.0", default-features = false } +ttf2woff2 = { + version = "0.11.1", + default-features = false, +} +uuid = { + version = "1.23.1", + features = ["v7"], +} +write-fonts = "0.48.1" [dev-dependencies] tempfile = "3"