diff --git a/Cargo.toml b/Cargo.toml index 538b62b..64b64f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,5 +27,5 @@ members = [ "sgf", "timezone-testing", "tree", - "visions/server", + "visions/server", "gm-dash", ] diff --git a/gm-dash/Cargo.toml b/gm-dash/Cargo.toml new file mode 100644 index 0000000..dadb985 --- /dev/null +++ b/gm-dash/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "gm-dash" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/gm-dash/src/main.rs b/gm-dash/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/gm-dash/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}