From 673364835b8ddbabe0cc17ccf968cc5bc49a37b4 Mon Sep 17 00:00:00 2001 From: EAimTY Date: Mon, 22 May 2023 03:21:02 +0900 Subject: [PATCH] bump version --- tuic-client/Cargo.toml | 10 +++++++++- tuic-server/Cargo.toml | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/tuic-client/Cargo.toml b/tuic-client/Cargo.toml index 23c0c4a..2c2b13b 100644 --- a/tuic-client/Cargo.toml +++ b/tuic-client/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "tuic-client" -version = "0.1.0" +version = "1.0.0-pre-alpha0" +authors = ["EAimTY "] +description = "Minimalistic TUIC client implementation as a reference" +categories = ["network-programming"] +keywords = ["network", "proxy", "quic", "tuic"] edition = "2021" +rust-version = "1.65.0" +readme = "README.md" +license = "GPL-3.0-or-later" +repository = "https://github.com/EAimTY/tuic" [dependencies] bytes = { version = "1.4.0", default-features = false, features = ["std"] } diff --git a/tuic-server/Cargo.toml b/tuic-server/Cargo.toml index 7147ee3..5ec4b2e 100644 --- a/tuic-server/Cargo.toml +++ b/tuic-server/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "tuic-server" -version = "0.1.0" +version = "1.0.0-pre-alpha0" +authors = ["EAimTY "] +description = "Minimalistic TUIC server implementation as a reference" +categories = ["network-programming"] +keywords = ["network", "proxy", "quic", "tuic"] edition = "2021" +rust-version = "1.65.0" +readme = "README.md" +license = "GPL-3.0-or-later" +repository = "https://github.com/EAimTY/tuic" [dependencies] bytes = { version = "1.4.0", default-features = false, features = ["std"] }