-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
16 lines (14 loc) · 907 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "circt-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
melior = { version = "0.16.2", features = ["llvm-trunk", "ods-dialects"], default-features = false }
melior-macro = { version = "0.10.2", features = ["llvm-trunk"], default-features = false }
tblgen = { version = "0.3.0", features = ["llvm-trunk"], default-features = false }
mlir-sys = { version = "0.2.1", features = ["llvm-trunk"], default-features = false }
[patch.crates-io]
melior = { git = "https://github.com/mikeurbach/melior.git", package = "melior", branch = "mikeurbach/latest-mlir" }
melior-macro = { git = "https://github.com/mikeurbach/melior.git", package = "melior-macro", branch = "mikeurbach/latest-mlir" }
tblgen = { git = "https://gitlab.com/mikeurbach/tblgen-rs.git", branch = "mikeurbach/latest-mlir" }
mlir-sys = { git = "https://github.com/mikeurbach/mlir-sys.git", branch = "mikeurbach/latest-mlir" }