summaryrefslogtreecommitdiff
path: root/tor-config/src/cmdline.rs
Commit message (Collapse)AuthorAgeFilesLines
* Resolve clippy warnings from Rust 1.52.Nick Mathewson2021-05-071-5/+1
| | | | | | | | | | Rust 1.52 just came out, and there are new clippy lints to deal with: * It spots more cases when we could use Option::map * It spots more cases when we could use Iterator::flatten * When we build a struct instance, it wants us to list the fields in the same order that the struct declares them.
* tor-config: fix a new clipppy warning.Nick Mathewson2021-03-291-1/+1
|
* Allow spaces in command-line arguments againNick Mathewson2021-03-121-1/+3
|
* Avoid most regex features.Nick Mathewson2021-03-101-10/+5
|
* Avoid unwrap() in tor-configNick Mathewson2021-03-041-5/+8
|
* Add some tests for tor_config::CfgPathNick Mathewson2021-02-121-1/+0
|
* Start a 'tor-config' crateNick Mathewson2021-02-011-0/+188
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.