forked from FractalFir/rustc_codegen_clr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (32 loc) · 806 Bytes
/
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
37
38
39
40
[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"
lazy_static = "1.4.0"
libc = "0.2.153"
libloading = "0.8.1"
postcard = { version = "1.0.8", features = ["use-std"] }
rustc-demangle = "0.1.23"
cilly = {path = "./cilly"}
serde = { version = "1.0.183", features = ["derive"] }
fxhash = "0.2.1"
[profile.dev.package.fxhash]
opt-level = 3
[lib]
crate-type = ["dylib"]
[workspace]
members = [ "cilly", "dotnet_aot",
"mycorrhiza",
]
exclude = ["rust/src/bootstrap"]
[profile.release]
debug = true
oom = "panic"
[profile.dev]
oom = "panic"