summaryrefslogtreecommitdiff
path: root/crates/tor-dirmgr/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump every crate by one patch version.Nick Mathewson2021-11-291-12/+12
|
* Move top-level configuration downwards from `arti` to `arti-config`.Nick Mathewson2021-11-181-0/+1
| | | | | | | | To do this at all neatly, I had to split out `tor-config` from `arti-config` again, and putting the lower level stuff (paths, builder errors) into tor-config. I also changed our use of derive_builder to always use a common error type, to avoid error type proliferation.
* tor-dirclient: Put routerdesc download behind a feature.Nick Mathewson2021-11-121-1/+1
| | | | Part of #125
* tor-dirmgr: put routerdesc storage behind a feature.Nick Mathewson2021-11-121-0/+2
| | | | | | | (We keep routerdescs in the schema, since we don't want _that_ to fragment.) Part of #125.
* Remove usage of tracing-test 0.1Nick Mathewson2021-11-111-1/+0
| | | | | | | | It requires tracing-subscriber 0.2, which is a lower version than we want, and which causes trouble with our minimal-versions CI test. There is a pending issue to fix this; we can reinstate tracing-test once it is merged: https://github.com/dbrgn/tracing-test/pull/11
* Tests for tor-dirmgr::bootstrapNick Mathewson2021-11-111-0/+2
|
* Bump all crate versions to 0.0.1Nick Mathewson2021-10-291-11/+11
|
* Upgrade to fslock version 0.2Nick Mathewson2021-10-271-1/+1
| | | | | This version makes all locks per-handle rather than per-process, by moving from lockf() to flock() on unix.
* Migrate tor-dirmgr from chrono to time 0.3Nick Mathewson2021-10-241-2/+2
| | | | | (This appears to be the emerging consensus of how to handle RUSTSEC-2020-0159.)
* Remove anyhow dependency from tor-dirmgr.Jani Monoses2021-10-181-1/+1
|
* Turn off default-features in chrono where possible.Nick Mathewson2021-10-171-1/+1
|
* Update cargo.lock; upgrade to newer rusqlite.Nick Mathewson2021-10-051-1/+1
|
* update fslock to compile androidTrinity Pointard2021-09-251-1/+1
|
* Upgrade memmap2, directories, and dirs dependencies.Nick Mathewson2021-09-231-1/+1
|
* remove unused depDaniel Eades2021-09-191-1/+0
|
* Use derive_builder for NetworkConfig.Nick Mathewson2021-09-081-0/+1
|
* Move all crates into a `crates` subdirectory.Nick Mathewson2021-08-271-0/+52
This will cause some pain for now, but now is really the best time to do this kind of thing.