Skip to content
Snippets Groups Projects
Commit 0cfb6a0e authored by Ian Jackson's avatar Ian Jackson
Browse files

tor-basic-utils: copy the README into lib.rs

The doc include rune does not work with our MSRV; it needs 1.54.

The alternative would be some kind of cfg() but that would
  - not provide the crate-level doc on Rust 1.53
  - involve the use of cfg_attr

Instead, just do it the old way.
parent 6e1da014
No related branches found
No related tags found
No related merge requests found
#![doc = include_str!("../README.md")]
//! `tor-basic-utils`: Utilities (low-level) for Tor
//!
//! Miscellaneous utilities for `tor-*` and `arti-*`.
//!
//! This crate lives at the *bottom* of the Tor crate stack.
//! So it contains only utilities which have no `tor-*` (or `arti-*`) dependencies.
//!
//! There is no particular theme.
//! More substantial sets of functionality with particular themes
//! are to be found in other `tor-*` crates.
#![deny(missing_docs)]
#![warn(noop_method_call)]
#![deny(unreachable_pub)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment