arti-axum

Crates.ioarti-axum
lib.rsarti-axum
version0.1.0
sourcesrc
created_at2024-02-14 23:23:37.289687
updated_at2024-02-14 23:23:37.289687
descriptionaxum::serve for onion services
homepagehttps://github.com/jgraef/arti-axum
repositoryhttps://github.com/jgraef/arti-axum
max_upload_size
id1140322
size122,559
Janosch Gräf (jgraef)

documentation

README

arti-axum

crates.io Documentation MIT

This crate allows you to run your axum http server as a tor hidden service using arti.

Example

For a full example, take a look at hello_world.rs.

let tor_client = TorClient::create_bootstrapped(TorClientConfig::default()).await?;

let (onion_service, rend_requests) = tor_client.launch_onion_service(
    OnionServiceConfigBuilder::default()
        .nickname("hello-world".to_owned().try_into().unwrap())
        .build()?,
)?;

let stream_requests = handle_rend_requests(rend_requests);

let app = Router::new().route("/", routing::get(|| async { "Hello, World!" }));

println!("serving at: http://{}", onion_service.onion_name().unwrap());

arti_axum::serve(stream_requests, app).await;
Commit count: 0

cargo fmt