This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

bobbin: install rustls crypto provider explicitly

Signed-off-by: dawn <dawn@tangled.org>

author
dawn
date (Jul 30, 2026, 7:44 PM +0300) commit cf99e2a1 parent 7ee7f4b2 change-id ottlvvuk
+4
+1
Cargo.lock
··· 687 687 "clap", 688 688 "confique", 689 689 "futures", 690 + "rustls", 690 691 "serde", 691 692 "socket2", 692 693 "thiserror 2.0.18",
+1
bobbin/crates/bobbin/Cargo.toml
··· 19 19 bobbin-search = { workspace = true } 20 20 bobbin-slingshot-client = { workspace = true } 21 21 bobbin-xrpc = { workspace = true } 22 + rustls = { workspace = true } 22 23 23 24 axum = { workspace = true } 24 25 serde = { workspace = true, features = ["derive"] }
+2
bobbin/crates/bobbin/src/main.rs
··· 69 69 70 70 #[tokio::main] 71 71 async fn main() -> ExitCode { 72 + let _ = rustls::crypto::aws_lc_rs::default_provider().install_default(); 73 + 72 74 let cli = Cli::parse(); 73 75 74 76 if let Some(Command::ConfigTemplate) = cli.command {