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"] }