rust
A swiss army knife of functions for working with Rust projects.
Installation
dagger install github.com/purpleclay/daggerverse/rust@v0.1.1
Entrypoint
Return Type
Rust !
Arguments
Name | Type | Description |
---|---|---|
base | Container | a custom base image containing an installation of rust. If no image is provided the `rust:<LATEST_TAG>-alpine3.20` will be used. The default image will use musl to support static compilation of Rust binaries. It comes bundled with the following packages: `cmake`, `build-base`, `libressl-dev`, `musl-dev`, `perl`, and `pkgconfig` |
src | Directory ! | a path to a directory containing the projects source code |
Example
dagger -m github.com/purpleclay/daggerverse/rust@b2b5051451c64d103c9ab16812055b44f7961ac9 call \
--src DIR_PATH
func (m *myModule) example(src *Directory) *Rust {
return dag.
Rust(src)
}
@function
def example(src: dagger.Directory) -> dag.Rust:
return (
dag.rust(src)
)
@func()
example(src: Directory): Rust {
return dag
.rust(src)
}
Types
Rust 🔗
Rust dagger module
clippy() 🔗
Lint your Rust project with Clippy to detect common mistakes and to improve your Rust code
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
noDeps | Boolean | - | run clippy on the current crate only and not against its dependencies |
Example
dagger -m github.com/purpleclay/daggerverse/rust@b2b5051451c64d103c9ab16812055b44f7961ac9 call \
--src DIR_PATH clippy
func (m *myModule) example(ctx context.Context, src *Directory) string {
return dag.
Rust(src).
Clippy(ctx)
}
@function
async def example(src: dagger.Directory) -> str:
return await (
dag.rust(src)
.clippy()
)
@func()
async example(src: Directory): Promise<string> {
return dag
.rust(src)
.clippy()
}