17 lines
304 B
CUE
17 lines
304 B
CUE
package rust
|
|
|
|
import (
|
|
"dagger.io/dagger"
|
|
"universe.dagger.io/x/contact@kjuulh.io/rust"
|
|
)
|
|
|
|
dagger.#Plan & {
|
|
client: filesystem: "./data/hello": read: contents: dagger.#FS
|
|
|
|
actions: test: {
|
|
publish: rust.#Publish & {
|
|
source: client.filesystem."./data/hello".read.contents
|
|
}
|
|
}
|
|
}
|