Skip to content

Commit 28c11e0

Browse files
authored
Support ACME parameters in init command. (#541)
* Support ACME parameters in init command. * Update dependencies. * Bump server patch version. * Update gitignores. * Remove obsolete direct dependency on tower.
1 parent b2c63bd commit 28c11e0

File tree

6 files changed

+127
-53
lines changed

6 files changed

+127
-53
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ target
99
*.bundle
1010
/*.csv
1111
/*.svg
12+
server.lock
1213
*.rustfmt
1314
.homebrew
1415
tests/server_public_key.txt

Cargo.lock

Lines changed: 65 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/server/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sos-server"
3-
version = "0.14.10"
3+
version = "0.14.11"
44
edition = "2021"
55
description = "Server for the Save Our Secrets sync protocol."
66
homepage = "https://saveoursecrets.com"
@@ -45,7 +45,6 @@ rustls.workspace = true
4545
axum = { version = "0.7", features = ["ws", "original-uri"] }
4646
axum-extra = {version = "0.9", features = ["typed-header"] }
4747
axum-macros = { version = "0.4" }
48-
tower = { version = "0.4" }
4948
tower-http = { version = "0.5", features = ["cors", "trace"] }
5049
tokio-stream = { version = "0.1" }
5150
utoipa = { version = "4", features = ["uuid"] }

crates/server/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ impl Default for NetworkConfig {
112112
pub enum SslConfig {
113113
/// Default HTTP transport.
114114
#[default]
115-
Http,
115+
None,
116116
/// Configuration for TLS certificate and private key.
117117
Tls(TlsConfig),
118118
/// Configuration for Let's Encrypt ACME certificates.

0 commit comments

Comments
 (0)