[package] name = "rvv-asm" version = "0.2.1" edition = "2018" license = "MIT" authors = ["Linfeng Qian "] keywords = ["rvv", "riscv", "vector", "encode", "macro"] description = "Procedure macro to encode RISC-V V extension (rvv) instructions" repository = "https://github.com/TheWaWaR/rvv-encoder" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] anyhow = "1.0.44" quote = "1.0.9" proc-macro2 = { version = "1.0", features = ["span-locations"] } syn = { version = "1.0.80", features = ["extra-traits", "full", "fold", "printing"] } rvv-encode = { version = "0.2.1", path = "../rvv-encode" } [dev-dependencies]