mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
trace: Fix tokio-trace documentation url in the README (#939)
This commit is contained in:
parent
195c4b0496
commit
db4019d84a
@ -33,7 +33,7 @@ the Rust programming language. It is:
|
|||||||
|
|
||||||
The API docs for the master branch are published [here][master-dox].
|
The API docs for the master branch are published [here][master-dox].
|
||||||
|
|
||||||
[master-dox]: https://tokio-rs.github.io/tokio/tokio/
|
[master-dox]: https://tokio-rs.github.io/tokio/doc/tokio/
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Single threaded executor for Tokio.
|
Single threaded executor for Tokio.
|
||||||
|
|
||||||
[Documentation](https://tokio-rs.github.io/tokio/tokio_current_thread/)
|
[Documentation](https://docs.rs/tokio-current-thread/0.1.4/tokio_current_thread/)
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
@ -31,10 +31,10 @@ executor, including:
|
|||||||
|
|
||||||
* [`Park`] abstracts over blocking and unblocking the current thread.
|
* [`Park`] abstracts over blocking and unblocking the current thread.
|
||||||
|
|
||||||
[`Executor`]: https://tokio-rs.github.io/tokio/tokio_executor/trait.Executor.html
|
[`Executor`]: https://docs.rs/tokio-executor/0.1.6/tokio_executor/trait.Executor.html
|
||||||
[`enter`]: https://tokio-rs.github.io/tokio/tokio_executor/fn.enter.html
|
[`enter`]: https://docs.rs/tokio-executor/0.1.6/tokio_executor/fn.enter.html
|
||||||
[`DefaultExecutor`]: https://tokio-rs.github.io/tokio/tokio_executor/struct.DefaultExecutor.html
|
[`DefaultExecutor`]: https://docs.rs/tokio-executor/0.1.6/tokio_executor/struct.DefaultExecutor.html
|
||||||
[`Park`]: https://tokio-rs.github.io/tokio/tokio_executor/park/index.html
|
[`Park`]: https://docs.rs/tokio-executor/0.1.6/tokio_executor/park/trait.Park.html
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
@ -25,10 +25,10 @@ are building a custom I/O resource.
|
|||||||
|
|
||||||
[`mio`]: http://github.com/carllerche/mio
|
[`mio`]: http://github.com/carllerche/mio
|
||||||
[`futures`]: http://github.com/rust-lang-nursery/futures-rs
|
[`futures`]: http://github.com/rust-lang-nursery/futures-rs
|
||||||
[`Reactor`]: https://tokio-rs.github.io/tokio/tokio_reactor/struct.Reactor.html
|
[`Reactor`]: https://docs.rs/tokio-reactor/0.1.8/tokio_reactor/struct.Reactor.html
|
||||||
[`Handle`]: https://tokio-rs.github.io/tokio/tokio_reactor/struct.Handle.html
|
[`Handle`]: https://docs.rs/tokio-reactor/0.1.8/tokio_reactor/struct.Handle.html
|
||||||
[`Registration`]: https://tokio-rs.github.io/tokio/tokio_reactor/struct.Registration.html
|
[`Registration`]: https://docs.rs/tokio-reactor/0.1.8/tokio_reactor/struct.Registration.html
|
||||||
[`PollEvented`]: https://tokio-rs.github.io/tokio/tokio_reactor/struct.PollEvented.html
|
[`PollEvented`]: https://docs.rs/tokio-reactor/0.1.8/tokio_reactor/struct.PollEvented.html
|
||||||
[`tokio`]: ../
|
[`tokio`]: ../
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
A scoped, structured logging and diagnostics system.
|
A scoped, structured logging and diagnostics system.
|
||||||
|
|
||||||
[Documentation](https://tokio-rs.github.io/tokio/tokio_trace/index.html)
|
[Documentation](https://tokio-rs.github.io/tokio/doc/tokio_trace/)
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Core primitives for `tokio-trace`.
|
Core primitives for `tokio-trace`.
|
||||||
|
|
||||||
[Documentation](https://tokio-rs.github.io/tokio/tokio_trace_core/index.html)
|
[Documentation](https://tokio-rs.github.io/tokio/doc/tokio_trace_core/index.html)
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
@ -34,16 +34,16 @@ API. However, this crate's API will change very infrequently, so it may be used
|
|||||||
when dependencies must be very stable.
|
when dependencies must be very stable.
|
||||||
|
|
||||||
[`tokio-trace`]: ../
|
[`tokio-trace`]: ../
|
||||||
[`Span`]: https://tokio-rs.github.io/tokio/tokio_trace_core/span/struct.Span.html
|
[`Span`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/span/struct.Span.html
|
||||||
[`Event`]: https://tokio-rs.github.io/tokio/tokio_trace_core/event/struct.Event.html
|
[`Event`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/event/struct.Event.html
|
||||||
[`Subscriber`]: https://tokio-rs.github.io/tokio/tokio_trace_core/subscriber/trait.Subscriber.html
|
[`Subscriber`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/subscriber/trait.Subscriber.html
|
||||||
[`Metadata`]: https://tokio-rs.github.io/tokio/tokio_trace_core/metadata/struct.Metadata.html
|
[`Metadata`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/metadata/struct.Metadata.html
|
||||||
[`Callsite`]: https://tokio-rs.github.io/tokio/tokio_trace_core/callsite/trait.Callsite.html
|
[`Callsite`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/callsite/trait.Callsite.html
|
||||||
[`Field`]: https://tokio-rs.github.io/tokio/tokio_trace_core/field/struct.Field.html
|
[`Field`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/field/struct.Field.html
|
||||||
[`FieldSet`]: https://tokio-rs.github.io/tokio/tokio_trace_core/field/struct.FieldSet.html
|
[`FieldSet`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/field/struct.FieldSet.html
|
||||||
[`Value`]: https://tokio-rs.github.io/tokio/tokio_trace_core/field/trait.Value.html
|
[`Value`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/field/trait.Value.html
|
||||||
[`ValueSet`]: https://tokio-rs.github.io/tokio/tokio_trace_core/field/struct.ValueSet.html
|
[`ValueSet`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/field/struct.ValueSet.html
|
||||||
[`Dispatch`]: https://tokio-rs.github.io/tokio/tokio_trace_core/dispatcher/struct.Dispatch.html
|
[`Dispatch`]: https://tokio-rs.github.io/tokio/doc/tokio_trace_core/dispatcher/struct.Dispatch.html
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
UDP bindings for `tokio`.
|
UDP bindings for `tokio`.
|
||||||
|
|
||||||
[Documentation](https://tokio-rs.github.io/tokio/tokio_udp/)
|
[Documentation](https://docs.rs/tokio-udp/0.1.3/tokio_udp/)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user