Crates.io | tor-dirmgr |
lib.rs | tor-dirmgr |
version | |
source | src |
created_at | 2021-06-24 15:04:40.706406 |
updated_at | 2025-01-07 17:25:56.33786 |
description | Bootstrap and update an accurate Tor network directory |
homepage | https://gitlab.torproject.org/tpo/core/arti/-/wikis/home |
repository | https://gitlab.torproject.org/tpo/core/arti.git/ |
max_upload_size | |
id | 414512 |
Cargo.toml error: | TOML parse error at line 22, column 1 | 22 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Code to fetch, store, and update Tor directory information.
This crate is part of Arti, a project to implement Tor in Rust.
In its current design, Tor requires a set of up-to-date authenticated directory documents in order to build multi-hop anonymized circuits through the network.
This directory manager crate is responsible for figuring out which directory information we lack, downloading what we're missing, and keeping a cache of it on disk.
mmap
(default) -- Use memory mapping to reduce the memory load for
reading large directory objects from disk.
routerdesc
-- (Incomplete) support for downloading and storing
router descriptors.
compression
(default) -- Build support for downloading compressed
documents. Requires a C compiler.
bridge-client
: Provide APIs used to fetch
and use bridge information.
full
-- Enable all features above.
static
-- Try to link with a static copy of sqlite3.Note that the APIs enabled by these features are NOT covered by semantic versioning1 guarantees: we might break them or remove them between patch versions.
experimental-api
: Add additional non-stable APIs to our public
interfaces.
dirfilter
: enable an experimental mechanism to modify incoming
directory information before it is used.
experimental
: Enable all the above experimental features.
License: MIT OR Apache-2.0
Remember, semantic versioning is what makes various cargo
features work reliably. To be explicit: if you want cargo update
to only make safe changes, then you cannot enable these
features. ↩