summaryrefslogtreecommitdiff
path: root/tor-checkable/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump version dependencies to 0.0.0Nick Mathewson2021-06-241-1/+1
|
* Remove "publish = false"Nick Mathewson2021-06-241-1/+0
|
* 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
|
* 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
|
* Update some dependencies.Nick Mathewson2021-02-191-1/+1
|
* Upgrade a few more dependencies.Nick Mathewson2021-01-131-1/+1
|
* cargo upgrade.Nick Mathewson2020-12-301-1/+1
|
* Upgrade dependenciesNick Mathewson2020-11-101-1/+1
|
* Run "cargo upgrade".Nick Mathewson2020-10-151-1/+1
|
* Pare down and sort dependenciesNick Mathewson2020-09-091-1/+3
|
* Run cargo upgrade, except for stream-cipher.Nick Mathewson2020-09-091-2/+2
|
* Migrate certificate and routerdesc checking to tor-checkableNick Mathewson2020-09-031-1/+1
| | | | | Now these types are parsed and returned wrapped inside a checkable object.
* checkable: Add a simple type for self-signed objects.Nick Mathewson2020-09-031-0/+3
|
* New module with traits for time-bound and signed objectsNick Mathewson2020-09-011-0/+10
Too often I've been writing code that defers timeliness checking to an is_valid_at() method [which you'd better call or else whoops] and which does signature checking while parsing [not great for performance]. Instead, let's make return types where you can't get at the interior object without first either checking the signatures/timeliness, or declaring that (dangerously) you don't care.