summaryrefslogtreecommitdiff
path: root/tor-config/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Fix category in tor-config/Cargo.tomlNick 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
|
* Bump regex and memchr versionsNick Mathewson2021-05-031-1/+1
|
* upgrade httparse and zeroizeNick Mathewson2021-04-251-1/+1
|
* More tests in tor-configNick Mathewson2021-04-211-0/+1
|
* Remove a few unused dependenciesNick Mathewson2021-04-051-1/+0
|
* upgrade to newer version of config crate.Nick Mathewson2021-03-241-1/+1
|
* Add the tor project as an author.Nick Mathewson2021-03-171-1/+1
|
* Add keywords to each Cargo.tomlNick Mathewson2021-03-171-1/+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
|
* Avoid most regex features.Nick Mathewson2021-03-101-1/+1
|
* Only enable the `config` features we are using.Nick Mathewson2021-03-101-1/+2
| | | | | This saves us from a lot of extra backends, including an entire extra version of serde (!).
* Bump dependencies with "cargo upgrade"Nick Mathewson2021-03-061-2/+2
|
* Update to latest futures, once_cellNick Mathewson2021-02-231-1/+1
|
* Update some dependencies.Nick Mathewson2021-02-191-2/+2
|
* Add some tests for tor_config::CfgPathNick Mathewson2021-02-121-0/+1
|
* Implement storage-directory configuration.Nick Mathewson2021-02-121-0/+2
| | | | | | | This affects the cache_dir and the as-yet-unused state_dir. It uses the shellexpand and directories crates so that the default values can be constant strings that use variables to refer to the right default locations.
* Initial support for configuration from file and/or command-line.Nick Mathewson2021-02-021-0/+2
|
* bump serde and logNick Mathewson2021-02-011-1/+1
|
* Start a 'tor-config' crateNick Mathewson2021-02-011-0/+16
This crate is mainly intended to wrap the config.rs code if necessary, and to give a way for interacting with it on the command line.