diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-07-26 09:01:02 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-07-26 09:01:02 +0300 |
commit | c810925fce7d5de1845e09538b6943f54f266cb0 (patch) | |
tree | 7ebbd149f44dd7d4fda558bc176c94ec4389147d | |
download | myslip-c810925fce7d5de1845e09538b6943f54f266cb0.tar.gz myslip-c810925fce7d5de1845e09538b6943f54f266cb0.zip |
Initialized project and added nom as dependency
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Cargo.lock | 25 | ||||
-rw-r--r-- | Cargo.toml | 7 | ||||
-rw-r--r-- | src/main.rs | 3 |
4 files changed, 36 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..ae188dd --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,25 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "melisp" +version = "0.1.0" +dependencies = [ + "nom", +] + +[[package]] +name = "memchr" +version = "2.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" + +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8560eb1 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "melisp" +version = "0.1.0" +edition = "2024" + +[dependencies] +nom = "8.0.0" diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |