This commit is contained in:
Kasper Juul Hermansen 2023-02-17 23:10:52 +01:00
parent d60c8f0a79
commit 468bca4a69
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
3 changed files with 17 additions and 1 deletions

View File

@ -11,7 +11,12 @@ publish = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["crates/dagger-codegen", "crates/dagger-sdk", "crates/dagger-core"]
members = [
"crates/dagger-codegen",
"crates/dagger-sdk",
"crates/dagger-core",
"ci",
]
[dependencies]
dagger-codegen = { path = "crates/dagger-codegen", version = "0.2.0" }

8
ci/Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "ci"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
ci/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}