Radish alpha
r
rad:z3qg5TKmN83afz2fj9z3fQjU8vaYE
Radicle CI adapter for native CI
Radicle
Git
chore: cargo init output
Lars Wirzenius committed 2 years ago
commit a0b0b8b195da9afa4013e7ea4b11d69168b39694
3 files changed +12 -0
added .gitignore
@@ -0,0 +1 @@
+
/target
added Cargo.toml
@@ -0,0 +1,8 @@
+
[package]
+
name = "radicle-native-ci"
+
version = "0.1.0"
+
edition = "2021"
+

+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+

+
[dependencies]
added src/main.rs
@@ -0,0 +1,3 @@
+
fn main() {
+
    println!("Hello, world!");
+
}