From 510d360b6b0a245e43a30bf5663114616a81a25a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingy=20d=C3=B6t=20Net?= Date: Tue, 26 Jul 2022 10:12:43 -0700 Subject: [PATCH] Rust release 0.0.16 --- Meta | 2 +- rust/.gitignore | 2 ++ rust/Cargo.toml | 11 +++++++++++ rust/Makefile | 9 +++++++++ rust/ReadMe.md | 1 + rust/src/main.rs | 3 +++ 6 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 rust/.gitignore create mode 100644 rust/Cargo.toml create mode 100644 rust/Makefile create mode 120000 rust/ReadMe.md create mode 100644 rust/src/main.rs diff --git a/Meta b/Meta index 88d66815..6ebc01dd 100644 --- a/Meta +++ b/Meta @@ -1,7 +1,7 @@ =meta: 0.0.2 name: YAMLScript -version: 0.0.15 +version: 0.0.16 abstract: Program in YAML homepage: https://yamlscript.org license: mit diff --git a/rust/.gitignore b/rust/.gitignore new file mode 100644 index 00000000..042776aa --- /dev/null +++ b/rust/.gitignore @@ -0,0 +1,2 @@ +/Cargo.lock +/target/ diff --git a/rust/Cargo.toml b/rust/Cargo.toml new file mode 100644 index 00000000..473990e7 --- /dev/null +++ b/rust/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "yamlscript" +version = "0.0.16" +edition = "2021" +description = "Program in YAML" +license = "MIT" +readme = "ReadMe.md" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/rust/Makefile b/rust/Makefile new file mode 100644 index 00000000..c49381dc --- /dev/null +++ b/rust/Makefile @@ -0,0 +1,9 @@ +SHELL := bash + +default: + +build clean publish test:: + cargo $@ + +clean:: + rm -f Cargo.lock diff --git a/rust/ReadMe.md b/rust/ReadMe.md new file mode 120000 index 00000000..95b4e966 --- /dev/null +++ b/rust/ReadMe.md @@ -0,0 +1 @@ +../ReadMe.md \ No newline at end of file diff --git a/rust/src/main.rs b/rust/src/main.rs new file mode 100644 index 00000000..a305f62b --- /dev/null +++ b/rust/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("YAMLScript — Program in YAML — Coming soon…"); +}