diff options
| author | Fuwn <[email protected]> | 2023-03-06 23:18:13 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-03-06 23:18:13 +0000 |
| commit | 6dc2f6f616dea520a6b6c52aec5a7308928d7d5b (patch) | |
| tree | 00adfc06cf5d6f4f550ff57e07f74a3f19af4980 /Cargo.toml | |
| download | guitar-6dc2f6f616dea520a6b6c52aec5a7308928d7d5b.tar.xz guitar-6dc2f6f616dea520a6b6c52aec5a7308928d7d5b.zip | |
feat: core featuresv0.1.1
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..51b6c49 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[package] +name = "guitar" +version = "0.1.1" +authors = ["Fuwn <[email protected]>"] +edition = "2021" +description = "A toolkit for string-based instruments" +documentation = "https://docs.rs/guitar" +readme = "README.md" +homepage = "https://github.com/Fuwn/guitar" +repository = "https://github.com/Fuwn/guitar" +license = "GPL-3.0-only" +keywords = ["guitar", "fret", "neck", "bridge"] + +# [features] +# default = [] + +[dependencies] +once_cell = "1.17.1" |