Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
16
examples/htmx/src/main.rs
Normal file
16
examples/htmx/src/main.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
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(())
|
||||
}
|
Reference in New Issue
Block a user