diff options
author | Andrzej Janik <[email protected]> | 2020-03-09 23:54:44 +0100 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2020-03-09 23:54:44 +0100 |
commit | 66e0323c66a822b4905518ede52eed71eaf46df0 (patch) | |
tree | 80efd70cad169c9a97948513b554098b2fbbeb4f /ptx/Cargo.toml | |
parent | c26ab5daedc9a855b7407c0a449b7a40922ae243 (diff) | |
download | ZLUDA-66e0323c66a822b4905518ede52eed71eaf46df0.tar.gz ZLUDA-66e0323c66a822b4905518ede52eed71eaf46df0.zip |
Start parsing PTX text
Diffstat (limited to 'ptx/Cargo.toml')
-rw-r--r-- | ptx/Cargo.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ptx/Cargo.toml b/ptx/Cargo.toml new file mode 100644 index 0000000..62050b9 --- /dev/null +++ b/ptx/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "ptx" +version = "0.0.0" +authors = ["Andrzej Janik <[email protected]>"] +edition = "2018" + +[lib] + +[dependencies] +lalrpop-util = "0.18.1" +regex = "1" + +[build-dependencies.lalrpop] +version = "0.18.1" +features = ["lexer"] |