summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-08-16 11:05:50 -0700
committerGitHub <noreply@github.com>2019-08-16 11:05:50 -0700
commit4935aae1640e668966b615ff32425d57d843bc3a (patch)
tree8d8b8e366eb26c4a0facb59cc8e6ef03f85f5030
parentba1829fd2633d5cd5cf9f8b0bc51f68a81185a3a (diff)
udp: remove files left over from moving tokio-udp (#1461)
-rw-r--r--README.md6
-rw-r--r--tokio-udp/CHANGELOG.md15
-rw-r--r--tokio-udp/Cargo.toml36
-rw-r--r--tokio-udp/LICENSE25
-rw-r--r--tokio-udp/README.md13
5 files changed, 2 insertions, 93 deletions
diff --git a/README.md b/README.md
index 63346a0b..9ebdced6 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 f28fdcdc..00000000
--- 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 e2e43f11..00000000
--- 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 <team@tokio.rs>"]
-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 cdb28b4b..00000000
--- 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 367485c6..00000000
--- 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.