<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/arti/src/arti_defaults.toml, branch arti-v0.0.1</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v0.0.1</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v0.0.1'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2021-10-27T18:11:48Z</updated>
<entry>
<title>Improve and future-proof the `arti` CLI</title>
<updated>2021-10-27T18:11:48Z</updated>
<author>
<name>eta</name>
<email>tor@eta.st</email>
</author>
<published>2021-10-27T16:40:00Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4fa0122dde2b664ebd10bfbe46da54c396dffdb3'/>
<id>urn:sha1:4fa0122dde2b664ebd10bfbe46da54c396dffdb3</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Make elements of TorClientConfig private.</title>
<updated>2021-10-19T19:29:36Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-10-19T19:29:36Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d245147c7f8ff5171629e097fa852920bc8c224d'/>
<id>urn:sha1:d245147c7f8ff5171629e097fa852920bc8c224d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename is_localhost to allow_local_addrs, and apply it to IPs too.</title>
<updated>2021-10-18T16:07:18Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-10-18T16:07:18Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=36febf7c1449f5a4bfeb51f824b8c6ee12d9f1ec'/>
<id>urn:sha1:36febf7c1449f5a4bfeb51f824b8c6ee12d9f1ec</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Introduce ClientConfig for is_localhost config parameter</title>
<updated>2021-10-06T19:32:17Z</updated>
<author>
<name>Neel Chauhan</name>
<email>neel@neelc.org</email>
</author>
<published>2021-10-05T22:30:00Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=e76988738af1887d52741ff6715279c0554ca426'/>
<id>urn:sha1:e76988738af1887d52741ff6715279c0554ca426</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Create a separate logging section in config.</title>
<updated>2021-09-09T07:38:29Z</updated>
<author>
<name>Jani Monoses</name>
<email>jani.monoses@gmail.com</email>
</author>
<published>2021-09-09T07:36:08Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=4d52f99020830b463a8b74a86418e9a0d5f66f3f'/>
<id>urn:sha1:4d52f99020830b463a8b74a86418e9a0d5f66f3f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Do not log to journald by default</title>
<updated>2021-09-07T12:56:17Z</updated>
<author>
<name>Jani Monoses</name>
<email>jani.monoses@gmail.com</email>
</author>
<published>2021-09-07T12:56:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d5b0d76435f35f49c7f3374b3832ba75acafba98'/>
<id>urn:sha1:d5b0d76435f35f49c7f3374b3832ba75acafba98</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Allow logging to journald.</title>
<updated>2021-09-07T12:54:42Z</updated>
<author>
<name>Jani Monoses</name>
<email>jani.monoses@gmail.com</email>
</author>
<published>2021-08-28T05:22:28Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=92d0ae26a9d32c0fea91d49d5be6590970dbd5c1'/>
<id>urn:sha1:92d0ae26a9d32c0fea91d49d5be6590970dbd5c1</id>
<content type='text'>
Log to journald when available, add journald config option.
Separate logging setup into its own function.
</content>
</entry>
<entry>
<title>Move all crates into a `crates` subdirectory.</title>
<updated>2021-08-27T13:53:09Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2021-08-27T13:53:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=557a0ff40b3731d4690767de27010bbeff08777d'/>
<id>urn:sha1:557a0ff40b3731d4690767de27010bbeff08777d</id>
<content type='text'>
This will cause some pain for now, but now is really the best time
to do this kind of thing.
</content>
</entry>
</feed>
