Skip to content

Commit

Permalink
Rust release 0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Jul 26, 2022
1 parent 6d9f2d6 commit 510d360
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Meta
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions rust/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/Cargo.lock
/target/
11 changes: 11 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
9 changes: 9 additions & 0 deletions rust/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
SHELL := bash

default:

build clean publish test::
cargo $@

clean::
rm -f Cargo.lock
1 change: 1 addition & 0 deletions rust/ReadMe.md
3 changes: 3 additions & 0 deletions rust/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("YAMLScript — Program in YAML — Coming soon…");
}

0 comments on commit 510d360

Please sign in to comment.