a better coloring crate
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..70aa946 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "comat" +version = "0.1.0" +edition = "2021" +authors = ["bendn <[email protected]>"] +license = "MIT" +description = "a better coloring crate" +repository = "https://github.com/bend-n/comat" + +[lib] +proc_macro = true + +[dependencies] +proc-macro2 = "1.0.67" +quote = "1.0.32" +syn = { version = "2.0.15", features = ["full"] } |