| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix typos | Dimitris Apostolou | 2023-01-07 | 1 | -1/+1 |
| | | |||||
| * | doc: fix links to Architecture.md | Emil Engler | 2022-12-20 | 1 | -1/+1 |
| | | | | | See 2c240923fcd0cec75087db39e461ee718228ea14. | ||||
| * | Check off items in README.md, remove inaccurate parentheticals. | Nick Mathewson | 2022-11-29 | 1 | -4/+4 |
| | | |||||
| * | bump rust-version to 1.60 in every crate. | Nick Mathewson | 2022-11-10 | 1 | -1/+1 |
| | | |||||
| * | READMEs: toplevel: Remove caveats, add xrefs, and tidying | Ian Jackson | 2022-09-02 | 1 | -31/+33 |
| | | |||||
| * | Improve documentation around Cargo features; make Runtime require Debug | eta | 2022-05-11 | 1 | -2/+24 |
| | | | | | | | | | | | | | | | - arti#445 highlighted the lack of good documentation around Arti's multiple runtime support, as well as it being difficult to determine what runtime was actually in use. - Improve the documentation to solve the first problem. - To solve the second problem, make Runtime require Debug (which is arguably a good idea anyway, since it makes them easier to embed in things), and print out the current runtime's Debug information when arti is invoked with `--version`. - (It also prints out other Cargo features, too!) fixes arti#445 | ||||
| * | Increase our MSRV to 1.56. | Nick Mathewson | 2022-04-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Our support policy says that we can update to any Rust released at least 6 months ago; 1.56 came out on 21 October 2021. This doesn't yet change any code: it just increases the version we say we need in our README, and the version we test against in CI. Our main justification for this change is to be able to upgrade to newer versions of our dependencies, including `async_executors` >= 0.5, `aes` >= 0.8, and `cipher` >= 0.4. | ||||
| * | Use https instead of http | Samanta Navarro | 2022-04-20 | 1 | -2/+2 |
| | | | | | Keep http in license text. | ||||
| * | Update README in preparation for 0.1.0 release. | Nick Mathewson | 2022-02-28 | 1 | -8/+9 |
| | | |||||
| * | README,CONTRIBUTING: More links. | Nick Mathewson | 2022-01-21 | 1 | -0/+11 |
| | | | | | | | | Explain how to report bugs and how get accounts on the bugtracker; add link to the troubleshooting document. Part of #277 | ||||
| * | Adopt an initial MSRV policy. | Nick Mathewson | 2022-01-19 | 1 | -5/+10 |
| | | | | | Closes #283. | ||||
| * | Check off some large items in README.md | Nick Mathewson | 2022-01-11 | 1 | -4/+4 |
| | | |||||
| * | readme: Add crates.io badge at the top | David Goulet | 2021-10-29 | 1 | -0/+2 |
| | | | | | Signed-off-by: David Goulet <[email protected]> | ||||
| * | Improve and future-proof the `arti` CLI | eta | 2021-10-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This switches out `arti`'s argument-parsing library with `clap`, which is a lot more featureful (and very widely used within the Rust ecosystem). We also now use a lot of `clap`'s features to improve the CLI experience: - The CLI now expects a subcommand (currently, either "help", or "proxy" for the existing SOCKS proxy behaviour). This should let us add additional non-SOCKS-proxy features to arti in future. - `clap` supports default values determined at runtime, so the way the default config file is loaded was changed: now, we determine the OS-specific path for said file before invoking `clap`, so the help command can show it properly. - The behaviour of `tor_config` was also changed; now, one simply specifies a list of configuration files to load, together with whether they're required. - That function also way overused generics; this has been fixed. - Instead of using the ARTI_LOG environment variable to configure logging, one now uses the `-l, --log-level` CLI option. (The intent is for this option to be more discoverable by users.) - The `proxy` subcommand allows the user to override the SOCKS port used on the CLI without editing the config file. | ||||
| * | Update our disclaimers and limitations sections. | Nick Mathewson | 2021-10-27 | 1 | -15/+15 |
| | | |||||
| * | Fix typos and cleanup | Dimitris Apostolou | 2021-10-25 | 1 | -2/+2 |
| | | |||||
| * | Rename tor_client/arti_tor_client to arti_client. | Nick Mathewson | 2021-10-21 | 1 | -1/+1 |
| | | | | | | | Solves a name conflict with the existing tor_client create. Closes #130. | ||||
| * | Move MSRV note to README | Nick Mathewson | 2021-08-24 | 1 | -0/+9 |
| | | |||||
| * | Run "typos" to fix a few more typos. | Nick Mathewson | 2021-06-17 | 1 | -2/+2 |
| | | |||||
| * | Revise repository-level documentation | Nick Mathewson | 2021-06-17 | 1 | -260/+97 |
| | | |||||
| * | add rustdoc link to readme | Nick Mathewson | 2021-06-09 | 1 | -0/+2 |
| | | |||||
| * | Mention tor-units in the readme | Nick Mathewson | 2021-05-25 | 1 | -0/+2 |
| | | |||||
| * | Small updates to README | Nick Mathewson | 2021-05-24 | 1 | -4/+10 |
| | | |||||
| * | Remove notes about prop#318, which _has_ been accepted. | Nick Mathewson | 2021-05-21 | 1 | -1/+0 |
| | | |||||
| * | Move our command-line interface into a new crate called "arti". | Nick Mathewson | 2021-03-17 | 1 | -2/+2 |
| | | | | | Closes #106 | ||||
| * | Update docs wrt tokio a bit | Nick Mathewson | 2021-03-02 | 1 | -3/+4 |
| | | |||||
| * | Merge remote-tracking branch 'origin/mr/14' into main | Nick Mathewson | 2021-02-09 | 1 | -0/+2 |
| |\ | |||||
| | * | Add a rough CONTRIBUTING.md file with some dogfooding instructions. | George Kadianakis | 2021-02-08 | 1 | -0/+2 |
| | | | |||||
| * | | Remove the TODO file in favor of gitlab. | Nick Mathewson | 2021-02-05 | 1 | -2/+1 |
| |/ | |||||
| * | Rename client-demo to tor-client. | Nick Mathewson | 2021-02-02 | 1 | -3/+3 |
| | | |||||
| * | Mention tor-consdiff in list of crates | Nick Mathewson | 2020-12-17 | 1 | -0/+2 |
| | | |||||
| * | Document newer modules | Nick Mathewson | 2020-11-25 | 1 | -7/+27 |
| | | |||||
| * | Update README to mention current state. | Nick Mathewson | 2020-11-25 | 1 | -14/+16 |
| | | |||||
| * | More notes in README.md: assumed proposals, stability (non)guarantee | Nick Mathewson | 2020-10-18 | 1 | -0/+8 |
| | | |||||
| * | List supported/unsupported subprotocols in the README | Nick Mathewson | 2020-10-18 | 1 | -1/+58 |
| | | |||||
| * | Revise TODO and README; declare "milestone 2" done. | Nick Mathewson | 2020-10-13 | 1 | -6/+5 |
| | | | | | | | Part of this "declaring milestone 2 done" business is a matter of putting additional tests and documentation into milestone 3 where they logically belong. | ||||
| * | README edits | Nick Mathewson | 2020-09-30 | 1 | -10/+19 |
| | | |||||
| * | Split the cell-handling parts of tor-proto into a new crate. | Nick Mathewson | 2020-09-26 | 1 | -5/+8 |
| | | |||||
| * | readme edits | Nick Mathewson | 2020-09-26 | 1 | -8/+10 |
| | | |||||
| * | Update TODO and README. | Nick Mathewson | 2020-09-25 | 1 | -1/+3 |
| | | |||||
| * | Update documentation | Nick Mathewson | 2020-09-21 | 1 | -4/+11 |
| | | |||||
| * | yet more readme updtes | Nick Mathewson | 2020-09-13 | 1 | -2/+7 |
| | | |||||
| * | more readme tweaks | Nick Mathewson | 2020-09-12 | 1 | -4/+3 |
| | | |||||
| * | Explain the demo in the readme. | Nick Mathewson | 2020-09-12 | 1 | -0/+7 |
| | | |||||
| * | update readme | Nick Mathewson | 2020-09-09 | 1 | -7/+18 |
| | | |||||
| * | Small readme edit | Nick Mathewson | 2020-08-28 | 1 | -2/+3 |
| | | |||||
| * | One more disclaimer in the README | Nick Mathewson | 2020-05-09 | 1 | -0/+8 |
| | | |||||
| * | improve the README a little | Nick Mathewson | 2020-05-09 | 1 | -3/+27 |
| | | |||||
| * | Fix some markdown in README.md. | Nick Mathewson | 2020-05-08 | 1 | -34/+40 |
| | | | | | | | | | | Markdown breakage 1: The internet led me to believe this is how you did a <dl> in markdown. Apparently it wasn't. Markdown breakage 2: I forgot how lists work! Also, add a paragraph about stuff you can try. | ||||
| * | fold plan into readme | Nick Mathewson | 2020-05-08 | 1 | -0/+9 |
| | | |||||
