Cargo.toml files: add readme keys, remove some exclude keys

This commit is contained in:
Joakim Frostegård 2022-03-26 11:39:04 +01:00
parent 7180318abb
commit 90437e23bb
15 changed files with 15 additions and 2 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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

View file

@ -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"

View file

@ -5,6 +5,7 @@ authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/greatest-ape/aquatic"
readme = "../README.md"
[[bin]]
name = "aquatic_udp_bench"

View file

@ -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"

View file

@ -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"

View file

@ -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]

View file

@ -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"

View file

@ -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"