Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove ACME options from tests | Alex Auvolat | 2023-04-05 | 2 | -8/+0 |
| | |||||
* | Remove ACME config, not used as we are doing ACME in Tricot now | Alex Auvolat | 2023-04-05 | 3 | -40/+3 |
| | |||||
* | IPv6-only mode | Alex Auvolat | 2023-04-05 | 3 | -15/+30 |
| | |||||
* | parse private_ip earlier | Alex Auvolat | 2023-04-04 | 2 | -6/+11 |
| | |||||
* | Remove .rustfmt.toml and move to standard rustfmt format (4 spaces) | Alex Auvolat | 2023-04-04 | 4 | -271/+273 |
| | |||||
* | cargo fmt | Alex Auvolat | 2023-04-04 | 2 | -5/+13 |
| | |||||
* | Add STUN actor that saves autodiscovered IPv4/IPv6 to Consul | Alex Auvolat | 2023-04-04 | 4 | -9/+50 |
| | |||||
* | Default value for skip tls parameter | Alex Auvolat | 2022-12-01 | 1 | -1/+2 |
| | |||||
* | Add possibility to skip tls verification for consulconsul-tls | Alex Auvolat | 2022-08-24 | 2 | -8/+15 |
| | |||||
* | Add TLS support for Consul | Alex Auvolat | 2021-12-30 | 2 | -2/+36 |
| | |||||
* | repaired test, now that private IP is an Optionautodetect-private-ip | adrien | 2021-12-28 | 1 | -10/+6 |
| | |||||
* | Allow Diplonat to automatically detect it's private IP | Alex Auvolat | 2021-12-25 | 2 | -7/+7 |
| | |||||
* | Stricter Rust formating rules and build in the CI | Quentin Dufour | 2021-09-20 | 3 | -13/+11 |
| | |||||
* | added rustfmt: a rustfmt.toml file diescribing syntax (soft tabs of 2 ↵ | adrien | 2021-09-11 | 4 | -204/+215 |
| | | | | spaces), a CONTRIBUTING.md file to explain how to use rustfmt, a .drone.yml file to add code style checks in CI, 2 lines in README.md to present CONTRIBUTING.md, and applied rustfmt on the source | ||||
* | a last pass to remove warnings from my code | LUXEY Adrien | 2021-08-16 | 2 | -3/+6 |
| | |||||
* | environment.rs successfully replaced with new config/ configuration loader. ↵ | LUXEY Adrien | 2021-08-16 | 2 | -7/+15 |
| | | | | No API changes, more tests, cleaner code: life is swell. | ||||
* | New configuration parsing using envy. Added minimal functionnality for | LUXEY Adrien | 2021-08-16 | 4 | -0/+317 |
the future ACME parameters. Tests written and passing. WIP: added envy dependncy and ConfigOpts structs that will constitute Diplonat's configuration WIP: ConfigOpts from_env() and validate() methods written. No API change (the env names remain unchanged)! Now need to use our new ConfigOpts struct instead of Environment, and update references to the environment variables in the code. WIP: RuntimeConfig with business logic done. Tests written, but they are all running from the same process - setting environment variables in each test produces incoherent results. Another solution for testing is needed. WIP: tests are fully written using 'from_iter' and all passing |