forked from aprilwade/randomprime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
51 lines (46 loc) · 1.04 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "randomprime"
version = "0.2.3"
authors = ["April Wade <wayedt@gmail.com>"]
edition = "2018"
[dependencies]
adler32 = "1.0"
clap = "2.9"
encoding = "0.2"
flate2 = "1.0"
num-bigint = "0.2"
num-integer = "0.1"
num-traits = "0.2"
memmap = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ssmarshal = "1"
rand = "0.7"
winapi = "0.3"
auto_struct_macros = { path = "auto_struct_macros" }
dol_linker = { path = "dol_linker" }
generated = { path = "generated" }
nod_wrapper = { path = "nod_wrapper" }
ppcasm = { path = "ppcasm" }
reader_writer = { path = "reader_writer" }
structs = { path = "structs" }
[profile.release]
lto = true
panic = "unwind"
[workspace]
members = [
"auto_struct_macros",
"dol_linker",
"generated",
"generated/macro_file_proxy",
"generated/macro_file_proxy/macro_file_proxy_proc_macro",
"nod_wrapper",
"ppcasm",
"ppcasm/ppcasm_macro",
"reader_writer",
"structs",
]
[lib]
name = "randomprime"
path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]