| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | arti-relay: store the `TorRelayConfig` in the `InertTorRelay` | Steven Engler | 2025-10-08 | 2 | -4/+7 | |
| | | ||||||
| * | arti-relay: change `TorRelay` into `InertTorRelay` | Steven Engler | 2025-10-08 | 2 | -24/+9 | |
| | | | | | We'll add a `TorRelay` back in a following commit. | |||||
| * | arti-relay: log the override options used | Steven Engler | 2025-10-08 | 1 | -1/+32 | |
| | | ||||||
| * | arti-relay: add mainloop | Steven Engler | 2025-10-08 | 1 | -8/+59 | |
| | | ||||||
| * | arti-relay: add `ToplevelBlockOn` to returned runtime | Steven Engler | 2025-10-08 | 1 | -2/+2 | |
| | | ||||||
| * | arti-relay: don't prepend "arti-relay: " to log lines | Steven Engler | 2025-10-08 | 1 | -10/+2 | |
| | | ||||||
| * | arti-relay: re-add trailing '/' to default paths in help text | Steven Engler | 2025-10-08 | 1 | -2/+12 | |
| | | ||||||
| * | Lay foundations for RSA keys in keystore. | Wesley Aptekar-Cassels | 2025-09-30 | 1 | -0/+3 | |
| | | | | | | | This currently can't be used due to upstream limitations in the ssh_key crate, which will be removed likely in the next release. In the meantime, we can put in all the groundwork. | |||||
| * | chanmgr: Add KeyMgr to channel builder | David Goulet | 2025-08-20 | 1 | -0/+1 | |
| | | | | | | | | This is so a relay can build authenticated channels. Several keys/cert are required for this that are within the key manager. Signed-off-by: David Goulet <[email protected]> | |||||
| * | Switch Cargo.toml files to edition 2024. | Nick Mathewson | 2025-08-07 | 2 | -3/+3 | |
| | | | | | | | | | | | | | | | First, run ``` git grep -l "^edition =" | xargs perl -i -pe 's/^edition *=.*/edition = "2024"/;' ``` Second, manually verify that all Cargo.toml files have changed, and nothing else has changed. Third, run cargo fmt again. | |||||
| * | Remove a now-needless doc comment. | Nick Mathewson | 2025-08-05 | 1 | -2/+0 | |
| | | ||||||
| * | Temporarily suppress mismatched_lifetime_syntaxes. | Gabriela Moldovan | 2025-07-07 | 1 | -0/+1 | |
| | | | | | See #2060. | |||||
| * | arti-relay: Removed dependency on `once_cell` | hashcatHitman | 2025-06-14 | 2 | -7/+7 | |
| | | | | | | | - Replaced `once_cell::sync::Lazy` with `std::sync::LazyLock`. Signed-off-by: hashcatHitman <[email protected]> | |||||
| * | arti-relay: standardized MSRV TODO | hashcatHitman | 2025-04-16 | 1 | -1/+1 | |
| | | | | | | - Part of a series of commits aimed at replacing all MSRV-related TODOs with a standardized format, which should be easier to find when the MSRV is bumped. | |||||
| * | Use CautiousRng for keys going into the KeyMgr. | Nick Mathewson | 2025-03-24 | 1 | -1/+1 | |
| | | ||||||
| * | squash! Upgrade rand dependency to 0.9. | Nick Mathewson | 2025-03-18 | 1 | -1/+1 | |
| | | | | | - `rand::thread_rng()` has been deprecated and renamed to `rand::rng()` | |||||
| * | arti-relay: remove 'override_net_params' config | Steven Engler | 2025-01-14 | 2 | -21/+2 | |
| | | | | | | | | We think that for relays, the 'override_net_params' config option is overly broad and a footgun. We can always re-add this back later if we want to, but for now the focus will be on exposing specific config options for features that are okay to be changed by users. | |||||
| * | arti-relay: fix rust/clippy lints | Steven Engler | 2025-01-14 | 4 | -4/+34 | |
| | | ||||||
| * | arti-relay: add rust/clippy lints | Steven Engler | 2025-01-14 | 3 | -0/+71 | |
| | | ||||||
| * | arti-relay: don't use environment var in `Mistrust` | Steven Engler | 2025-01-13 | 2 | -26/+4 | |
| | | ||||||
| * | arti-relay: remove `TorRelayConfigBuilder::from_directories` | Steven Engler | 2025-01-13 | 1 | -27/+0 | |
| | | | | | | I don't think we'll ever need this. Users will set the directories through the config file. | |||||
| * | arti-relay: add basic placeholder logger | Steven Engler | 2025-01-13 | 1 | -4/+61 | |
| | | | | | | This is probably not what the final logger would look like, but it's a fine placeholder for now. | |||||
| * | arti-relay: add config loading | Steven Engler | 2025-01-13 | 2 | -13/+47 | |
| | | ||||||
| * | arti-relay: make `main` a wrapper around a `main_main` | Steven Engler | 2025-01-13 | 1 | -1/+13 | |
| | | | | | This makes it more similar to arti. | |||||
| * | arti-relay: add `LoggingConfig` | Steven Engler | 2025-01-13 | 1 | -0/+40 | |
| | | ||||||
| * | arti-relay: rework default config file path handling | Steven Engler | 2025-01-13 | 1 | -15/+91 | |
| | | ||||||
| * | arti-relay: add constant `ARTI_FS_DISABLE_PERMISSION_CHECKS` | Steven Engler | 2025-01-13 | 1 | -0/+24 | |
| | | | | | We don't actually use it yet, but we do show it in the '--help' text. | |||||
| * | arti-relay: `TorRelay` takes a `CfgPathResolver` | Steven Engler | 2025-01-13 | 2 | -8/+20 | |
| | | ||||||
| * | arti-relay: remove relay builder | Steven Engler | 2025-01-13 | 3 | -71/+8 | |
| | | | | | | | | This is a bunch of boilerplate code that we don't currently need, and may not need in the future since we don't need to provide a lot of library-API-level customization for `TorRelay` like we do with `TorClient`. | |||||
| * | arti-relay: default config paths now use path resolver | Steven Engler | 2025-01-13 | 3 | -12/+21 | |
| | | ||||||
| * | arti-relay: added a base `CfgPathResolver` | Steven Engler | 2025-01-13 | 1 | -5/+122 | |
| | | ||||||
| * | arti-relay: impl `TopLevel` for `TorRelayConfig` | Steven Engler | 2025-01-13 | 1 | -0/+4 | |
| | | ||||||
| * | arti-relay: added `From<LogLevel> for tracing::metadata::Level` | Steven Engler | 2025-01-13 | 1 | -1/+13 | |
| | | ||||||
| * | arti-relay: make cli `log_level` an `Option` | Steven Engler | 2025-01-13 | 1 | -4/+3 | |
| | | | | | This is an override option, which we want to default to "unset". | |||||
| * | arti-relay: test that global cli options have "global" set | Steven Engler | 2025-01-13 | 1 | -1/+16 | |
| | | ||||||
| * | arti-relay: moved global cli options to common struct | Steven Engler | 2025-01-13 | 1 | -16/+24 | |
| | | ||||||
| * | update `CfgPath::path` to use a `CfgPathResolver` | Steven Engler | 2024-11-18 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | | | This is a big change across multiple crates since there isn't a good way to break it up. This changes the signature of `CfgPath::path` to: ``` pub fn path(&self, path_resolver: &CfgPathResolver) -> Result<PathBuf, CfgPathError> { ``` Making this change means that our global `CfgPathResolver` needs to be stored in the 'arti-client' library instead of `tor-config-path`, and must be passed through to anything that calls `path` to expand the variables. | |||||
| * | arti-relay: small change to log level comment | Steven Engler | 2024-11-14 | 1 | -1/+1 | |
| | | | | | | In arti this option is just a convenience function to override the configuration option, so we'll probably want to do the same thing. | |||||
| * | arti-relay: remove TODO comment about runtimes | Steven Engler | 2024-11-14 | 1 | -7/+3 | |
| | | ||||||
| * | arti-relay: remove runtime/tls-related features | Steven Engler | 2024-11-14 | 1 | -7/+1 | |
| | | ||||||
| * | arti-relay: add cli tests | Steven Engler | 2024-11-13 | 1 | -0/+35 | |
| | | ||||||
| * | arti-relay: add 'build-info' subcommand | Steven Engler | 2024-11-13 | 2 | -0/+13 | |
| | | ||||||
| * | arti-relay: add clap for cli | Steven Engler | 2024-11-13 | 2 | -2/+109 | |
| | | | | | The options are inspired by the arti cli interface. | |||||
| * | tor-config: removed re-export of `CfgPath` | Steven Engler | 2024-11-04 | 1 | -1/+2 | |
| | | | | | | Also updated other packages to get `CfgPath` directly from `tor-config-path' instead of 'tor-config'. | |||||
| * | tor-relay-crypto: Add a denotator to RelaySigningKeypairSpecifier. | Gabriela Moldovan | 2024-10-31 | 1 | -1/+1 | |
| | | | | | | | | This will enable us to store more than one `K_relaysign_ed` in the keystore. Closes #1692 | |||||
| * | tor-relay-crypto: Use the KS_ prefix for RelayIdentityKeySpecifier. | Gabriela Moldovan | 2024-10-31 | 1 | -2/+2 | |
| | | | | | | | | | | | According to its docs, `RelayIdentityKeySpecifier` was meant to be the key specifier for the relay identity keypair, so its role prefix should be `KS_`. This also renames `RelayIdentityKeySpecifier` to `RelayIdentityKeypairSpecifier` for clarity (we're about to add another specifier here, for the public relay identity key). | |||||
| * | memquota: Change ToplevelAccount to be an alias for Arc<MemoryQuotaTracker> | Ian Jackson | 2024-10-15 | 1 | -1/+2 | |
| | | | | | Fixes a TODO. | |||||
| * | arti-relay: Rename remaining XXXs to be TODOs | David Goulet | 2024-10-10 | 2 | -4/+4 | |
| | | | | | Signed-off-by: David Goulet <[email protected]> | |||||
| * | arti-relay: Fix cargo doc issues | David Goulet | 2024-10-10 | 2 | -3/+3 | |
| | | | | | Signed-off-by: David Goulet <[email protected]> | |||||
| * | arti-relay: Remove the use of pub and pub use | David Goulet | 2024-10-10 | 3 | -10/+8 | |
| | | | | | | | | | | | | | | | | The "pub" and "pub(crate)" visibility in a binary crate is essentially the same except for the dead_code warning analysis which ignores "pub" but will warn at "pub(crate)". This should get fixed soon according to: https://github.com/rust-lang/rust/issues/74970 However, for now, lets catch all this dead code :). Part of #1674 Signed-off-by: David Goulet <[email protected]> | |||||
