Use Rust 1.64 workspace inheritance

This commit is contained in:
Joakim Frostegård 2022-09-25 11:40:43 +02:00
parent 132b355e1b
commit 65a8c9d6ff
17 changed files with 157 additions and 122 deletions

View file

@ -1,14 +1,14 @@
[package]
name = "aquatic_udp"
version = "0.2.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2021"
license = "Apache-2.0"
description = "High-performance open UDP BitTorrent tracker"
repository = "https://github.com/greatest-ape/aquatic"
keywords = ["udp", "server", "peer-to-peer", "torrent", "bittorrent"]
readme = "../README.md"
rust-version = "1.62"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
rust-version.workspace = true
[lib]
name = "aquatic_udp"
@ -20,9 +20,9 @@ name = "aquatic_udp"
cpu-pinning = ["aquatic_common/hwloc"]
[dependencies]
aquatic_common = { version = "0.2.0", path = "../aquatic_common" }
aquatic_toml_config = { version = "0.2.0", path = "../aquatic_toml_config" }
aquatic_udp_protocol = { version = "0.2.0", path = "../aquatic_udp_protocol" }
aquatic_common.workspace = true
aquatic_toml_config.workspace = true
aquatic_udp_protocol.workspace = true
anyhow = "1"
blake3 = "1"