diff --git a/README.md b/README.md index 63346a0b9..9ebdced6b 100644 --- a/README.md +++ b/README.md @@ -140,12 +140,11 @@ The crates included as part of Tokio are: * [`tokio-macros`]: Macros for usage with Tokio. -* [`tokio-net`]: Event loop that drives I/O resources as well as TCP apis. +* [`tokio-net`]: Event loop that drives I/O resources as well as TCP and UDP + apis. * [ `tokio-timer`]: Time related APIs. -* [`tokio-udp`]: UDP socket. - * [`tokio-uds`]: Unix Domain Socket bindings. [`tokio-codec`]: tokio-codec @@ -156,7 +155,6 @@ The crates included as part of Tokio are: [`tokio-macros`]: tokio-macros [`tokio-net`]: tokio-net [`tokio-timer`]: tokio-timer -[`tokio-udp`]: tokio-udp [`tokio-uds`]: tokio-uds ## Related Projects diff --git a/tokio-udp/CHANGELOG.md b/tokio-udp/CHANGELOG.md deleted file mode 100644 index f28fdcdc3..000000000 --- a/tokio-udp/CHANGELOG.md +++ /dev/null @@ -1,15 +0,0 @@ -# 0.1.3 (November 21, 2018) - -* Add `RecvDgram::into_parts` (#710). - -# 0.1.2 (August 23, 2018) - -* Provide methods to inspect readiness (#522) - -# 0.1.1 (June 13, 2018) - -* Switch to tokio-codec (#360) - -# 0.1.0 (Mar 23, 2018) - -* Initial release diff --git a/tokio-udp/Cargo.toml b/tokio-udp/Cargo.toml deleted file mode 100644 index e2e43f117..000000000 --- a/tokio-udp/Cargo.toml +++ /dev/null @@ -1,36 +0,0 @@ -[package] -name = "tokio-udp" -# When releasing to crates.io: -# - Remove path dependencies -# - Update html_root_url. -# - Update doc url -# - Cargo.toml -# - Update CHANGELOG.md. -# - Create "v0.2.x" git tag. -version = "0.2.0-alpha.1" -edition = "2018" -authors = ["Tokio Contributors "] -license = "MIT" -documentation = "https://docs.rs/tokio-udp/0.2.0-alpha.1/tokio_udp" -repository = "https://github.com/tokio-rs/tokio" -homepage = "https://tokio.rs" -description = """ -UDP bindings for tokio. -""" -categories = ["asynchronous"] - -[dependencies] -tokio-codec = { version = "=0.2.0-alpha.1", path = "../tokio-codec" } -tokio-net = { version = "=0.2.0-alpha.1", path = "../tokio-net" } - -bytes = "0.4.12" -mio = "0.6.14" -log = "0.4" -futures-core-preview = "=0.3.0-alpha.18" -futures-util-preview = "=0.3.0-alpha.18" -futures-sink-preview = "=0.3.0-alpha.18" - -[dev-dependencies] -tokio = { version = "=0.2.0-alpha.1", path = "../tokio", default-features = false, features = ["rt-full"] } - -env_logger = { version = "0.6", default-features = false } diff --git a/tokio-udp/LICENSE b/tokio-udp/LICENSE deleted file mode 100644 index cdb28b4b5..000000000 --- a/tokio-udp/LICENSE +++ /dev/null @@ -1,25 +0,0 @@ -Copyright (c) 2019 Tokio Contributors - -Permission is hereby granted, free of charge, to any -person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without -limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions -of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT -SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. diff --git a/tokio-udp/README.md b/tokio-udp/README.md deleted file mode 100644 index 367485c6e..000000000 --- a/tokio-udp/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# tokio-udp - -UDP bindings for `tokio`. - -## License - -This project is licensed under the [MIT license](./LICENSE). - -### Contribution - -Unless you explicitly state otherwise, any contribution intentionally submitted -for inclusion in Tokio by you, shall be licensed as MIT, without any additional -terms or conditions.