summaryrefslogtreecommitdiff
path: root/tor-netdir/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump version dependencies to 0.0.0Nick Mathewson2021-06-241-7/+7
|
* Remove "publish = false"Nick Mathewson2021-06-241-1/+0
|
* Remove some (but not all) needless dependencies.Nick Mathewson2021-06-171-6/+3
|
* Missing feature dependency.Nick Mathewson2021-06-161-1/+1
|
* Expose the "construct_network()" function in tor-netdir.Nick Mathewson2021-06-161-0/+2
| | | | | | | | This function has been used for testing tor-netdir, but it will also be useful for testing path selection in tor-cirmgr as well. I've put it behind a "testing" feature, since it shouldn't really be used by most applications.
* tor-netdir no longer uses caret.Nick Mathewson2021-05-251-1/+0
|
* Remove unused derive_more.Nick Mathewson2021-05-251-5/+0
|
* Use macros and types to improve handling of Netdir parameters.Nick Mathewson2021-05-251-0/+6
| | | | (Squashed from typed-netdir-params)
* Give every Cargo.toml a repository fieldNick Mathewson2021-05-191-0/+1
|
* Fill in "package.categories" on all Cargo.tomlNick Mathewson2021-05-191-0/+1
|
* More tests for tor-netdir::weightNick Mathewson2021-05-071-0/+1
|
* Upgrade rusqlite; remove needless usage.Nick Mathewson2021-04-051-1/+0
|
* Experimental accessor functions for Relay members.Nick Mathewson2021-03-301-0/+4
|
* Add a compatibility layer so we can upgrade rand_core.Nick Mathewson2021-03-181-1/+1
| | | | | | dalek-crypto is stuck on rand_core 0.5.1, so we've been stuck too. This commit introduces a compatibility module so that we can wrap new rand_core instances to make them backward compatible.
* Add the tor project as an author.Nick Mathewson2021-03-171-1/+1
|
* Add keywords to each Cargo.tomlNick Mathewson2021-03-171-0/+1
|
* Add a description field to all our Cargo.toml filesNick Mathewson2021-03-171-0/+1
|
* Give it a homepage everyplace.Nick Mathewson2021-03-171-0/+1
|
* Bump dependencies with "cargo upgrade"Nick Mathewson2021-03-061-3/+3
|
* Update to latest futures, once_cellNick Mathewson2021-02-231-1/+1
|
* Update some dependencies.Nick Mathewson2021-02-191-1/+1
|
* Add support to override network parameters in the configuration.Nick Mathewson2021-02-161-0/+1
|
* Make authorities and fallbacks configurable.Nick Mathewson2021-02-111-0/+1
| | | | | | | | | | This commit adds configuration options for these values, with the right defaults, and uses those options instead of built-in functions to set them. We also remove the function to extract information from chutney directories: now that arti is configurable, it can be chutney's job to make its own network configurations.
* Upgrade a few more dependencies.Nick Mathewson2021-01-131-1/+1
|
* cargo upgrade.Nick Mathewson2020-12-301-1/+1
|
* Expose network parameters more sensibly from NetDir.Nick Mathewson2020-12-221-0/+1
|
* Migrate from lazy_static to once_cell.Nick Mathewson2020-12-221-1/+1
|
* upgrade rusqliteNick Mathewson2020-12-081-1/+1
|
* Move storage and config logic from netdir to dirmgr.Nick Mathewson2020-11-201-4/+0
|
* Include a list of fallback directories in tor-netdirNick Mathewson2020-11-161-0/+2
|
* Checkpoint work on a sqlite backend.Nick Mathewson2020-11-161-0/+5
| | | | | | | | | | | Among other stuff, revert parts of previous commit that introduced a ReadableStore abstraction: there isn't a good abstraction hat covers both Tor legacy stores and sqlite stores-- or if there is, I'll have to find it organizally. This isn't a final version: it probably has bugs, and it needs documentation and more tests. But before I do those, I want to sanity-check the API by drafting the next layer up on the stack.
* Checkpoint work on making storage backend genericNick Mathewson2020-11-141-0/+1
| | | | Also uses mmap for loading stuff.
* Upgrade dependenciesNick Mathewson2020-11-101-1/+1
|
* Run "cargo upgrade".Nick Mathewson2020-10-151-1/+1
|
* Pare down and sort dependenciesNick Mathewson2020-09-091-2/+3
|
* Run cargo upgrade, except for stream-cipher.Nick Mathewson2020-09-091-5/+5
|
* New "linkspec" module to encapsulate info needed to connect/extend.Nick Mathewson2020-09-081-0/+2
|
* Add a handy function for picking a random relay.Nick Mathewson2020-09-081-0/+1
|
* Start on a 'netdir' crate to wrap netdoc.Nick Mathewson2020-09-071-0/+19
For now, this assumes an existing Tor cache directory.