diff options
Diffstat (limited to 'minecraft-chat')
| -rw-r--r-- | minecraft-chat/Cargo.toml | 8 | ||||
| -rw-r--r-- | minecraft-chat/src/lib.rs | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/minecraft-chat/Cargo.toml b/minecraft-chat/Cargo.toml new file mode 100644 index 00000000..4607dc99 --- /dev/null +++ b/minecraft-chat/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "minecraft-chat" +version = "0.1.0" +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/minecraft-chat/src/lib.rs b/minecraft-chat/src/lib.rs new file mode 100644 index 00000000..31e1bb20 --- /dev/null +++ b/minecraft-chat/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} |
