From 90437e23bb336f442737838a3aaf4900b420f41b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Sat, 26 Mar 2022 11:39:04 +0100 Subject: [PATCH] Cargo.toml files: add readme keys, remove some exclude keys --- aquatic/Cargo.toml | 1 + aquatic_cli_helpers/Cargo.toml | 1 + aquatic_common/Cargo.toml | 1 + aquatic_http/Cargo.toml | 1 + aquatic_http_load_test/Cargo.toml | 1 + aquatic_http_protocol/Cargo.toml | 2 +- aquatic_toml_config/Cargo.toml | 2 +- aquatic_toml_config_derive/Cargo.toml | 1 + aquatic_udp/Cargo.toml | 1 + aquatic_udp_bench/Cargo.toml | 1 + aquatic_udp_load_test/Cargo.toml | 1 + aquatic_udp_protocol/Cargo.toml | 1 + aquatic_ws/Cargo.toml | 1 + aquatic_ws_load_test/Cargo.toml | 1 + aquatic_ws_protocol/Cargo.toml | 1 + 15 files changed, 15 insertions(+), 2 deletions(-) diff --git a/aquatic/Cargo.toml b/aquatic/Cargo.toml index 6121da2..53f8417 100644 --- a/aquatic/Cargo.toml +++ b/aquatic/Cargo.toml @@ -7,6 +7,7 @@ license = "Apache-2.0" description = "Blazingly fast, multi-threaded BitTorrent tracker (UDP, HTTP, WebTorrent)" repository = "https://github.com/greatest-ape/aquatic" keywords = ["bittorrent", "torrent", "webtorrent"] +readme = "../README.md" [[bin]] name = "aquatic" diff --git a/aquatic_cli_helpers/Cargo.toml b/aquatic_cli_helpers/Cargo.toml index df80062..42152f7 100644 --- a/aquatic_cli_helpers/Cargo.toml +++ b/aquatic_cli_helpers/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" license = "Apache-2.0" description = "aquatic BitTorrent tracker CLI helpers" repository = "https://github.com/greatest-ape/aquatic" +readme = "../README.md" [dependencies] aquatic_toml_config = "0.1.0" diff --git a/aquatic_common/Cargo.toml b/aquatic_common/Cargo.toml index 9e81393..6e49293 100644 --- a/aquatic_common/Cargo.toml +++ b/aquatic_common/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" license = "Apache-2.0" description = "aquatic BitTorrent tracker common code" repository = "https://github.com/greatest-ape/aquatic" +readme = "../README.md" [lib] name = "aquatic_common" diff --git a/aquatic_http/Cargo.toml b/aquatic_http/Cargo.toml index 4053c12..6fe7ab5 100644 --- a/aquatic_http/Cargo.toml +++ b/aquatic_http/Cargo.toml @@ -7,6 +7,7 @@ license = "Apache-2.0" description = "Blazingly fast, multi-threaded HTTP BitTorrent tracker" repository = "https://github.com/greatest-ape/aquatic" keywords = ["http", "server", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [lib] name = "aquatic_http" diff --git a/aquatic_http_load_test/Cargo.toml b/aquatic_http_load_test/Cargo.toml index f5413f8..51c0808 100644 --- a/aquatic_http_load_test/Cargo.toml +++ b/aquatic_http_load_test/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" license = "Apache-2.0" repository = "https://github.com/greatest-ape/aquatic" keywords = ["http", "benchmark", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [[bin]] name = "aquatic_http_load_test" diff --git a/aquatic_http_protocol/Cargo.toml b/aquatic_http_protocol/Cargo.toml index 230f719..685e2ba 100644 --- a/aquatic_http_protocol/Cargo.toml +++ b/aquatic_http_protocol/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" license = "Apache-2.0" repository = "https://github.com/greatest-ape/aquatic" description = "HTTP BitTorrent tracker protocol" -exclude = ["target"] keywords = ["http", "protocol", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [lib] name = "aquatic_http_protocol" diff --git a/aquatic_toml_config/Cargo.toml b/aquatic_toml_config/Cargo.toml index 3c9e9fb..2f331dd 100644 --- a/aquatic_toml_config/Cargo.toml +++ b/aquatic_toml_config/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" license = "Apache-2.0" description = "Serialize toml with comments" repository = "https://github.com/greatest-ape/aquatic" -exclude = ["target"] keywords = ["toml"] +readme = "../README.md" [lib] name = "aquatic_toml_config" diff --git a/aquatic_toml_config_derive/Cargo.toml b/aquatic_toml_config_derive/Cargo.toml index 3e55d89..504d478 100644 --- a/aquatic_toml_config_derive/Cargo.toml +++ b/aquatic_toml_config_derive/Cargo.toml @@ -8,6 +8,7 @@ description = "Serialize toml with comments" repository = "https://github.com/greatest-ape/aquatic" exclude = ["target"] keywords = ["toml"] +readme = "../README.md" [lib] proc-macro = true diff --git a/aquatic_udp/Cargo.toml b/aquatic_udp/Cargo.toml index c986152..bf82311 100644 --- a/aquatic_udp/Cargo.toml +++ b/aquatic_udp/Cargo.toml @@ -7,6 +7,7 @@ license = "Apache-2.0" description = "Blazingly fast, multi-threaded UDP BitTorrent tracker" repository = "https://github.com/greatest-ape/aquatic" keywords = ["udp", "server", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [lib] name = "aquatic_udp" diff --git a/aquatic_udp_bench/Cargo.toml b/aquatic_udp_bench/Cargo.toml index b7c4bf6..48e7749 100644 --- a/aquatic_udp_bench/Cargo.toml +++ b/aquatic_udp_bench/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Joakim FrostegÄrd "] edition = "2021" license = "Apache-2.0" repository = "https://github.com/greatest-ape/aquatic" +readme = "../README.md" [[bin]] name = "aquatic_udp_bench" diff --git a/aquatic_udp_load_test/Cargo.toml b/aquatic_udp_load_test/Cargo.toml index ae803c2..286d58a 100644 --- a/aquatic_udp_load_test/Cargo.toml +++ b/aquatic_udp_load_test/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" license = "Apache-2.0" repository = "https://github.com/greatest-ape/aquatic" keywords = ["udp", "benchmark", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [[bin]] name = "aquatic_udp_load_test" diff --git a/aquatic_udp_protocol/Cargo.toml b/aquatic_udp_protocol/Cargo.toml index 67dda3b..7cd0ba8 100644 --- a/aquatic_udp_protocol/Cargo.toml +++ b/aquatic_udp_protocol/Cargo.toml @@ -7,6 +7,7 @@ license = "Apache-2.0" description = "UDP BitTorrent tracker protocol" repository = "https://github.com/greatest-ape/aquatic" keywords = ["udp", "protocol", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [dependencies] byteorder = "1" diff --git a/aquatic_ws/Cargo.toml b/aquatic_ws/Cargo.toml index 01665d6..49acee3 100644 --- a/aquatic_ws/Cargo.toml +++ b/aquatic_ws/Cargo.toml @@ -7,6 +7,7 @@ license = "Apache-2.0" description = "Blazingly fast, multi-threaded WebTorrent tracker" repository = "https://github.com/greatest-ape/aquatic" keywords = ["webtorrent", "websocket", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [lib] diff --git a/aquatic_ws_load_test/Cargo.toml b/aquatic_ws_load_test/Cargo.toml index af0528e..b1e7edd 100644 --- a/aquatic_ws_load_test/Cargo.toml +++ b/aquatic_ws_load_test/Cargo.toml @@ -6,6 +6,7 @@ edition = "2021" license = "Apache-2.0" repository = "https://github.com/greatest-ape/aquatic" keywords = ["webtorrent", "websocket", "benchmark", "torrent", "bittorrent"] +readme = "../README.md" [[bin]] name = "aquatic_ws_load_test" diff --git a/aquatic_ws_protocol/Cargo.toml b/aquatic_ws_protocol/Cargo.toml index 79be691..a380afb 100644 --- a/aquatic_ws_protocol/Cargo.toml +++ b/aquatic_ws_protocol/Cargo.toml @@ -8,6 +8,7 @@ description = "WebTorrent tracker protocol" repository = "https://github.com/greatest-ape/aquatic" exclude = ["target"] keywords = ["webtorrent", "protocol", "peer-to-peer", "torrent", "bittorrent"] +readme = "../README.md" [lib] name = "aquatic_ws_protocol"