mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-04-02 18:55:32 +00:00
Cargo.toml files: add readme keys, remove some exclude keys
This commit is contained in:
parent
7180318abb
commit
90437e23bb
15 changed files with 15 additions and 2 deletions
|
|
@ -7,6 +7,7 @@ license = "Apache-2.0"
|
||||||
description = "Blazingly fast, multi-threaded BitTorrent tracker (UDP, HTTP, WebTorrent)"
|
description = "Blazingly fast, multi-threaded BitTorrent tracker (UDP, HTTP, WebTorrent)"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["bittorrent", "torrent", "webtorrent"]
|
keywords = ["bittorrent", "torrent", "webtorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "aquatic"
|
name = "aquatic"
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
description = "aquatic BitTorrent tracker CLI helpers"
|
description = "aquatic BitTorrent tracker CLI helpers"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aquatic_toml_config = "0.1.0"
|
aquatic_toml_config = "0.1.0"
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
description = "aquatic BitTorrent tracker common code"
|
description = "aquatic BitTorrent tracker common code"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "aquatic_common"
|
name = "aquatic_common"
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ license = "Apache-2.0"
|
||||||
description = "Blazingly fast, multi-threaded HTTP BitTorrent tracker"
|
description = "Blazingly fast, multi-threaded HTTP BitTorrent tracker"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["http", "server", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["http", "server", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "aquatic_http"
|
name = "aquatic_http"
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["http", "benchmark", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["http", "benchmark", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "aquatic_http_load_test"
|
name = "aquatic_http_load_test"
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
description = "HTTP BitTorrent tracker protocol"
|
description = "HTTP BitTorrent tracker protocol"
|
||||||
exclude = ["target"]
|
|
||||||
keywords = ["http", "protocol", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["http", "protocol", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "aquatic_http_protocol"
|
name = "aquatic_http_protocol"
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
description = "Serialize toml with comments"
|
description = "Serialize toml with comments"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
exclude = ["target"]
|
|
||||||
keywords = ["toml"]
|
keywords = ["toml"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "aquatic_toml_config"
|
name = "aquatic_toml_config"
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ description = "Serialize toml with comments"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
exclude = ["target"]
|
exclude = ["target"]
|
||||||
keywords = ["toml"]
|
keywords = ["toml"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ license = "Apache-2.0"
|
||||||
description = "Blazingly fast, multi-threaded UDP BitTorrent tracker"
|
description = "Blazingly fast, multi-threaded UDP BitTorrent tracker"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["udp", "server", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["udp", "server", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "aquatic_udp"
|
name = "aquatic_udp"
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "aquatic_udp_bench"
|
name = "aquatic_udp_bench"
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["udp", "benchmark", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["udp", "benchmark", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "aquatic_udp_load_test"
|
name = "aquatic_udp_load_test"
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ license = "Apache-2.0"
|
||||||
description = "UDP BitTorrent tracker protocol"
|
description = "UDP BitTorrent tracker protocol"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["udp", "protocol", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["udp", "protocol", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
byteorder = "1"
|
byteorder = "1"
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ license = "Apache-2.0"
|
||||||
description = "Blazingly fast, multi-threaded WebTorrent tracker"
|
description = "Blazingly fast, multi-threaded WebTorrent tracker"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["webtorrent", "websocket", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["webtorrent", "websocket", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
keywords = ["webtorrent", "websocket", "benchmark", "torrent", "bittorrent"]
|
keywords = ["webtorrent", "websocket", "benchmark", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "aquatic_ws_load_test"
|
name = "aquatic_ws_load_test"
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ description = "WebTorrent tracker protocol"
|
||||||
repository = "https://github.com/greatest-ape/aquatic"
|
repository = "https://github.com/greatest-ape/aquatic"
|
||||||
exclude = ["target"]
|
exclude = ["target"]
|
||||||
keywords = ["webtorrent", "protocol", "peer-to-peer", "torrent", "bittorrent"]
|
keywords = ["webtorrent", "protocol", "peer-to-peer", "torrent", "bittorrent"]
|
||||||
|
readme = "../README.md"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "aquatic_ws_protocol"
|
name = "aquatic_ws_protocol"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue