-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCargo.toml
37 lines (32 loc) · 1.16 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "rustc_codegen_clr"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT OR Apache-2.0"
repository = "https://github.com/FractalFir/rustc_codegen_clr"
[dependencies]
ar = "0.9.0"
bytecount = "0.6.8"
libc = "0.2.153"
libloading = "0.8.1"
postcard = { version = "1.0.8", features = ["use-std"] }
rustc_codegen_clr_place = {path = "./rustc_codegen_clr_place"}
rustc_codegen_clr_ctx = {path = "./rustc_codegen_clr_ctx"}
rustc_codegen_clr_type = {path = "./rustc_codegen_clr_type"}
rustc_codegen_clr_call = {path = "./rustc_codegen_clr_call"}
rustc_codgen_clr_operand = {path = "./rustc_codgen_clr_operand"}
rustc-demangle = "0.1.23"
cilly = {path = "./cilly"}
serde = { version = "1.0.183", features = ["derive"] }
[profile.dev.package.fxhash]
opt-level = 3
[lib]
crate-type = ["dylib"]
[workspace]
members = [ "cilly", "dotnet_aot",
"mycorrhiza", "rustc_codegen_clr_call", "rustc_codegen_clr_ctx", "rustc_codegen_clr_place", "rustc_codegen_clr_type", "rustc_codgen_clr_operand",
]
exclude = ["rust/src/bootstrap","backup_rust/src/bootstrap"]
[profile.release]
debug = true