dagger-components/examples/htmx/src/main.rs
kjuulh 4f72b4fdae
All checks were successful
continuous-integration/drone/push Build is passing
feat: with htmx
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-11-25 11:58:22 +01:00

17 lines
443 B
Rust

use std::path::PathBuf;
#[tokio::main]
pub async fn main() -> eyre::Result<()> {
let client = dagger_sdk::connect().await?;
let crates = ["some-crate"];
let dag = dagger_rust::source::RustSource::new(client.clone());
let (_src, _rust_src) = dag.get_rust_src(None::<PathBuf>, crates).await?;
let _full_src = dag
.get_rust_target_src(&PathBuf::from("."), client.container(), crates)
.await?;
Ok(())
}