summary refs log tree commit diff
diff options
context:
space:
mode:
authorV <v@unfathomable.blue>2021-08-12 08:30:11 +0200
committerV <v@unfathomable.blue>2021-08-14 04:03:46 +0200
commit3b4eaeaf282af63a4a1a16e13a5d4d4a2ffea910 (patch)
tree08130c994767f740fbbe9d6a3080199fb5e4332a
parent5703ed3e3b6e8f8d959525acb866d6f3c867327e (diff)
downloadunf-legacy-3b4eaeaf282af63a4a1a16e13a5d4d4a2ffea910.tar.zst
ripple: create the project skeleton
Change-Id: I4e50d2990fea76097ee61f8c98d65f2e4e44d765
-rw-r--r--ripple/.gitignore4
-rw-r--r--ripple/Cargo.lock7
-rw-r--r--ripple/Cargo.lock.license2
-rw-r--r--ripple/Cargo.toml9
-rw-r--r--ripple/rustfmt.toml5
-rw-r--r--ripple/src/main.rs6
6 files changed, 33 insertions, 0 deletions
diff --git a/ripple/.gitignore b/ripple/.gitignore
new file mode 100644
index 0000000..66ddaaf
--- /dev/null
+++ b/ripple/.gitignore
@@ -0,0 +1,4 @@
+# SPDX-FileCopyrightText: V <v@unfathomable.blue>
+# SPDX-License-Identifier: OSL-3.0
+
+/target
diff --git a/ripple/Cargo.lock b/ripple/Cargo.lock
new file mode 100644
index 0000000..d280e4a
--- /dev/null
+++ b/ripple/Cargo.lock
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 3
+
+[[package]]
+name = "ripple"
+version = "0.1.0"
diff --git a/ripple/Cargo.lock.license b/ripple/Cargo.lock.license
new file mode 100644
index 0000000..dddf7fd
--- /dev/null
+++ b/ripple/Cargo.lock.license
@@ -0,0 +1,2 @@
+SPDX-FileCopyrightText: V <v@unfathomable.blue>
+SPDX-License-Identifier: CC0-1.0
diff --git a/ripple/Cargo.toml b/ripple/Cargo.toml
new file mode 100644
index 0000000..654f89b
--- /dev/null
+++ b/ripple/Cargo.toml
@@ -0,0 +1,9 @@
+# SPDX-FileCopyrightText: V <v@unfathomable.blue>
+# SPDX-License-Identifier: OSL-3.0
+
+[package]
+name = "ripple"
+version = "0.1.0"
+edition = "2018"
+
+[dependencies]
diff --git a/ripple/rustfmt.toml b/ripple/rustfmt.toml
new file mode 100644
index 0000000..1a8d7aa
--- /dev/null
+++ b/ripple/rustfmt.toml
@@ -0,0 +1,5 @@
+# SPDX-FileCopyrightText: V <v@unfathomable.blue>
+# SPDX-License-Identifier: OSL-3.0
+
+hard_tabs = true
+imports_granularity = "One"
diff --git a/ripple/src/main.rs b/ripple/src/main.rs
new file mode 100644
index 0000000..94e6205
--- /dev/null
+++ b/ripple/src/main.rs
@@ -0,0 +1,6 @@
+// SPDX-FileCopyrightText: V <v@unfathomable.blue>
+// SPDX-License-Identifier: OSL-3.0
+
+fn main() {
+	println!("A droplet breaks the surface.");
+}