<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-config/src, branch arti-v1.3.2</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.3.2</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.3.2'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2025-01-06T23:09:41Z</updated>
<entry>
<title>clippy: deny `mod_module_files`</title>
<updated>2025-01-06T23:09:41Z</updated>
<author>
<name>Steven Engler</name>
<email>opara@torproject.org</email>
</author>
<published>2025-01-06T23:02:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=252a3a803b2db65792db5bd51dee8950d8557e0d'/>
<id>urn:sha1:252a3a803b2db65792db5bd51dee8950d8557e0d</id>
<content type='text'>
Denies 'mod.rs' files for consistency.

https://rust-lang.github.io/rust-clippy/master/index.html#mod_module_files
</content>
</entry>
<entry>
<title>map_builder: Document deserialize implemntation.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-19T17:40:27Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ab678571b1ad01d6a9dfc39aa3e165ae9a756bd5'/>
<id>urn:sha1:ab678571b1ad01d6a9dfc39aa3e165ae9a756bd5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ExtendBuilder: Try to document more clearly what it does</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-19T17:37:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=59ea59d31a671dd364454feae21021854962e59f'/>
<id>urn:sha1:59ea59d31a671dd364454feae21021854962e59f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>map_builder: Extensively rework example.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-19T17:33:06Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=064a2d4ea78b391679af6ce8f662a968819852be'/>
<id>urn:sha1:064a2d4ea78b391679af6ce8f662a968819852be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extend_builder: document more about why it works.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-19T17:06:11Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=aaad97356bba19f43b06133bd697244a0c766502'/>
<id>urn:sha1:aaad97356bba19f43b06133bd697244a0c766502</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extend_builder: Tests for strip_option, default.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-19T16:46:45Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=ace21ada4394ed856dea0d404027bca81d70ba9a'/>
<id>urn:sha1:ace21ada4394ed856dea0d404027bca81d70ba9a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>map_builder: Add support for default settings.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-17T15:58:23Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=30ea55d424a84e57ab7d8a4b622f63a1d54bc6a0'/>
<id>urn:sha1:30ea55d424a84e57ab7d8a4b622f63a1d54bc6a0</id>
<content type='text'>
This is a little tricky (beyond the usual macro fun) because we
needed to use ExtendBuilder to get reasonable behavior for our
default trees.
</content>
</entry>
<entry>
<title>Define macros to create a map-builder type.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-10T16:40:59Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=1f1ffe7f88d8697d75fd14f5811e624312f984e4'/>
<id>urn:sha1:1f1ffe7f88d8697d75fd14f5811e624312f984e4</id>
<content type='text'>
We're about to need this to define some of the configuration
for RPC listeners.

The provided map-builder type is much less voluminous in terms of
APIs added than the list-builder type: It just uses Deref* and sub_builder.
I think this simplicity may be a win.

I'll need to rethink how this type handles defaults in order to
implement connect points properly; I've left XXXXs for that issue.
</content>
</entry>
<entry>
<title>tor-config: Add "extend" functionality for config builders.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-11T14:45:20Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=459edb4f96761d8ac335201ff775e0461bf72c4b'/>
<id>urn:sha1:459edb4f96761d8ac335201ff775e0461bf72c4b</id>
<content type='text'>
We'll use this to implement defaults for maps in our configuration.
</content>
</entry>
<entry>
<title>list_builder: fix a very typoed line.</title>
<updated>2024-12-19T21:12:25Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-12-10T17:54:02Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=7e01605e192d2bf14fd0c41e3991a108455fdbef'/>
<id>urn:sha1:7e01605e192d2bf14fd0c41e3991a108455fdbef</id>
<content type='text'>
</content>
</entry>
</feed>
