diff --git a/Cargo.toml b/Cargo.toml index d8e2fcc..f290159 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ "admin", "query", ] -default-members = ["master"] +default-members = ["master", "protocol"] [profile.release] codegen-units = 1 diff --git a/admin/Cargo.toml b/admin/Cargo.toml index 9c3b191..f618839 100644 --- a/admin/Cargo.toml +++ b/admin/Cargo.toml @@ -1,10 +1,15 @@ [package] name = "xash3d-admin" +description = "Admin tool for Xash3D master server" version = "0.1.0" license = "GPL-3.0-only" +keywords = ["xash3d"] +categories = ["command-line-utilities"] authors = ["Denis Drakhnia "] edition = "2021" rust-version = "1.56" +homepage = "https://xash.su" +repository = "https://git.mentality.rip/numas13/xash3d-master" [dependencies] thiserror = "1.0.49" diff --git a/master/Cargo.toml b/master/Cargo.toml index 90956db..b185b63 100644 --- a/master/Cargo.toml +++ b/master/Cargo.toml @@ -1,10 +1,15 @@ [package] name = "xash3d-master" +description = "Master server for games on Xash3D engine" version = "0.1.0" license = "GPL-3.0-only" +keywords = ["xash3d"] +categories = ["command-line-utilities"] authors = ["Denis Drakhnia "] edition = "2021" rust-version = "1.56" +homepage = "https://xash.su" +repository = "https://git.mentality.rip/numas13/xash3d-master" [features] default = ["logtime"] diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 7b15036..d188237 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,10 +1,15 @@ [package] name = "xash3d-protocol" +description = "Network protocol library for Xash3D engine" version = "0.1.0" license = "LGPL-3.0-only" +keywords = ["xash3d"] +categories = ["parsing"] authors = ["Denis Drakhnia "] edition = "2021" rust-version = "1.56" +homepage = "https://xash.su" +repository = "https://git.mentality.rip/numas13/xash3d-master" [dependencies] thiserror = "1.0.49" diff --git a/query/Cargo.toml b/query/Cargo.toml index b6e43d1..2a73911 100644 --- a/query/Cargo.toml +++ b/query/Cargo.toml @@ -1,10 +1,15 @@ [package] name = "xash3d-query" +description = "Tool for querying servers from Xash3D master server" version = "0.1.0" license = "GPL-3.0-only" +keywords = ["xash3d"] +categories = ["command-line-utilities"] authors = ["Denis Drakhnia "] edition = "2021" rust-version = "1.56" +homepage = "https://xash.su" +repository = "https://git.mentality.rip/numas13/xash3d-master" [features] default = ["color"]