Merge pull request #31 from greatest-ape/edition-2021

Switch to rust edition 2021
This commit is contained in:
Joakim Frostegård 2021-11-24 22:59:11 +01:00 committed by GitHub
commit 198fa26870
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 13 additions and 13 deletions

View file

@ -2,7 +2,7 @@
name = "aquatic" name = "aquatic"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_cli_helpers" name = "aquatic_cli_helpers"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_common" name = "aquatic_common"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_http" name = "aquatic_http"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_http_load_test" name = "aquatic_http_load_test"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
repository = "https://github.com/greatest-ape/aquatic" repository = "https://github.com/greatest-ape/aquatic"

View file

@ -2,7 +2,7 @@
name = "aquatic_http_protocol" name = "aquatic_http_protocol"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_udp" name = "aquatic_udp"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_udp_bench" name = "aquatic_udp_bench"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
repository = "https://github.com/greatest-ape/aquatic" repository = "https://github.com/greatest-ape/aquatic"

View file

@ -2,7 +2,7 @@
name = "aquatic_udp_load_test" name = "aquatic_udp_load_test"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
repository = "https://github.com/greatest-ape/aquatic" repository = "https://github.com/greatest-ape/aquatic"

View file

@ -2,7 +2,7 @@
name = "aquatic_udp_protocol" name = "aquatic_udp_protocol"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_ws" name = "aquatic_ws"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" 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"

View file

@ -2,7 +2,7 @@
name = "aquatic_ws_load_test" name = "aquatic_ws_load_test"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
repository = "https://github.com/greatest-ape/aquatic" repository = "https://github.com/greatest-ape/aquatic"

View file

@ -2,7 +2,7 @@
name = "aquatic_ws_protocol" name = "aquatic_ws_protocol"
version = "0.1.0" version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"] authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018" edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
description = "WebTorrent tracker protocol" description = "WebTorrent tracker protocol"
repository = "https://github.com/greatest-ape/aquatic" repository = "https://github.com/greatest-ape/aquatic"