Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
Initial commit
Alexis Sellier committed 3 years ago
commit bad4dcf11e584ecf34de291a5295d7c1e2fca4d9
4 files changed +18 -0
added .gitignore
@@ -0,0 +1 @@
+
/target
added Cargo.lock
@@ -0,0 +1,7 @@
+
# This file is automatically @generated by Cargo.
+
# It is not intended for manual editing.
+
version = 3
+

+
[[package]]
+
name = "radicle-node"
+
version = "0.1.0"
added Cargo.toml
@@ -0,0 +1,7 @@
+
[package]
+
name = "radicle-node"
+
version = "0.1.0"
+
authors = ["Alexis Sellier <alexis@radicle.xyz>"]
+
edition = "2021"
+

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