summaryrefslogtreecommitdiffstats
path: root/tokio-tls
AgeCommit message (Collapse)Author
2019-10-26io: move into `tokio` crate (#1691)Carl Lerche
A step towards collapsing Tokio sub crates into a single `tokio` crate (#1318). The `io` implementation is now provided by the main `tokio` crate. Functionality can be opted out of by using the various net related feature flags.
2019-10-25net: move into tokio crate (#1683)Carl Lerche
A step towards collapsing Tokio sub crates into a single `tokio` crate (#1318). The `net` implementation is now provided by the main `tokio` crate. Functionality can be opted out of by using the various net related feature flags.
2019-09-30Prepare for release of 0.2.0-alpha.6 (#1617)Jon Gjengset
Note that `tokio-timer` and `tokio-tls` become 0.3.0-alpha.6 (not 0.2.0)
2019-09-30chore: update futures-preview to 0.3.0-alpha.19 (#1610)Taiki Endo
2019-09-19Release 0.2.0 alpha.5 (#1576)Carl Lerche
2019-09-19chore: deny warnings for doc tests (#1539)Taiki Endo
2019-09-13chore: fix docs links (#1523)Geoff Shannon
2019-09-11tls: fix new temporary lifetime rustc error [E0597] (#1547)Kirill Mironov
Fixes: #1546 Signed-off-by: Kirill Mironov <vetrokm@gmail.com>
2019-09-04tls: Add get_ref and get_mut (#1537)Jon Gjengset
2019-08-30tls: bump to v0.3.0-alpha.4 (#1515)Carl Lerche
2019-08-29prepare v0.2.0-alpha.4 (#1509)Sean McArthur
2019-08-28prepare v0.2.0-alpha.3 release (#1505)Carl Lerche
2019-08-28net: perform DNS lookup on connect / bind. (#1499)Carl Lerche
A sealed `net::ToSocketAddrs` trait is added. This trait is not intended to be used by users. Instead, it is an argument to `connect` and `bind` functions. The operating system's DNS lookup functionality is used. Blocking operations are performed on a thread pool in order to avoid blocking the runtime.
2019-08-20chore: bump to newer nightly (#1485)Taiki Endo
2019-08-18docs: add docs.rs metadata to build with all features (#1471)Ivan Petkov
2019-08-17chore: prepare 0.2.0-alpha.2 release (#1465)Carl Lerche
2019-08-15tcp: move tokio-tcp into tokio-net (#1456)Carl Lerche
2019-08-15runtime: refactor thread-local setters (#1449)Douman
2019-08-10chore: update futures-preview to 0.3.0-alpha.18 (#1427)Taiki Endo
2019-08-11chore: apply unreachable_pub and missing_debug_implementations to all crates ↵Taiki Endo
(#1424)
2019-08-11chore: bump to newer nightly (#1426)Taiki Endo
2019-08-10chore: change default lint level to warning and deny warnings in CI (#1416)Taiki Endo
2019-08-08update (dev dep) env_logger to latest 0.6 (#1390)David Kellum
2019-08-08chore: prepare for v0.2.0-alpha.1 release (#1410)Lucio Franco
2019-08-07chore: enable full CI run (#1399)Carl Lerche
* update all tests * fix doc examples * misc API tweaks
2019-07-26ci: enable clippy lints (#1335)Taiki Endo
2019-07-20chore: use ptr::{null, null_mut} instead of 0 as *{const, mut} (#1333)Taiki Endo
2019-07-20chore: remove unnecessary conversion (#1332)Taiki Endo
2019-07-19tokio-tls: enable `Send` and `Sync` (#1317)João Oliveira
- update 0 as *mut () calls to std::ptr::null_mut() - impl Send and Sync for AllowStd
2019-07-16tls: update to std-future (#1224)João Oliveira
2019-07-10chore: remove usage of deprecated ONCE_INIT (#1281)Taiki Endo
2019-06-10Make threadpool::Runtime methods take &self (#1140)Steven Fackler
The runtime is inherently multi-threaded, so it's going to have to deal with synchronization when submitting new tasks anyway. This allows a runtime to be shared by multiple threads more easily when e.g. building a blocking facade over a tokio-based API.
2019-05-14Update Tokio to Rust 2018 (#1082)Carl Lerche
2019-04-24chore: remember to remove path deps on release (#1057)Carl Lerche
2019-04-01Replace try! macro with ? operator (#1024)Taiki Endo
2019-03-19chore: repo maintenance + no path dependencies (#991)Carl Lerche
- Move `tokio` into its own directory. - Remove `path` dependencies. - Run tests with once with crates.io dep and once with patched dep.
2019-03-01Set up CI with Azure Pipelines (#926)Carl Lerche
Use Azure Pipelines for CI. This migrates away from Travis and Appveyor.
2019-02-21chore: apply rustfmt to all crates (#917)Carl Lerche
2019-01-06Bump version to 0.1.14. (#836)Carl Lerche
Also bumps: * tokio-async-await (0.1.5) * tokio-executor (0.1.6) * tokio-fs (0.1.5) * tokio-io (0.1.11) * tokio-reactor (0.1.8) * tokio-tcp (0.1.3) * tokio-threadpool (0.1.10) * tokio-tls (0.2.1) * tokio-uds (0.2.5) ...and updates LICENSE files to 2019.
2018-11-27tls: make TlsConnector and TlsAcceptor derive Clone (#777)Steven Fackler
2018-11-20tests: handle errors properly in examples (#748)Liran Ringel
2018-08-25Spelling fixes (#571)Ben Boeckel
* docs: fix spelling and whitespace errors
2018-08-15Add tokio-tls echo example. (#541)Jason Ish
Based on the current example on the front page of tokio.rs.
2018-08-10Routine dependencies update (#533)Mateusz Mikuła
* Update dependencies * Replace deprecated tempdir with tempfile
2018-08-08Bump tokio-tls to v0.2.0 (#531)Carl Lerche
This prepares the crate for release.
2018-08-08Move tokio-tls into workspace (#529)Sean McArthur