Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..52122a1 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "muiua" +version = "0.1.0" +edition = "2024" +authors = ["bend-n <[email protected]>"] +license = "MIT" +description = "inline uiua" + +[dependencies] +proc-macro2 = "1.0.101" +quote = "1.0.40" +uiua = { default-features = false, features = [ + "native_sys", +], git = "https://github.com/uiua-lang/uiua" } + +[lib] +proc-macro = true + + +# [profile.dev.package.uiua] +# opt-level = 3 +# debug-assertions = false |