-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (29 loc) · 853 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
[package]
name = "emei"
license = "GPL-3.0"
version = "0.5.1"
authors = ["Lyzh <[email protected]>"]
edition = "2021"
description = "The EMei JIT/AOT backend codegen framework."
repository = "https://github.com/imlyzh/emei"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "libemei"
path = "src/lib.rs"
[[example]]
name = "page_addr"
path = "examples/page_addr.rs"
# [[example]]
# name = "codegen"
# path = "examples/codegen.rs"
# [[example]]
# name = "gen_lemu_test"
# path = "examples/gen_lemu_test.rs"
[dependencies]
lazy_static = "1.4"
lyuu-commons = { git="https://github.com/imlyzh/lyuu-commons.git" }
[target.'cfg(unix)'.dependencies]
nix = "0.23"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["sysinfoapi", "memoryapi"] }