forked from toasterparty/randomprime
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
79 lines (73 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "randomprime"
version = "0.2.3"
authors = ["April Wade <[email protected]>"]
edition = "2021"
[dependencies]
adler32 = "1.0"
clap.workspace = true
encoding = "0.2"
enum-map = { version = "0.6", features = ["serde"] }
flate2 = "1.0"
image = { version = "0.23", default-features = false, features = ["png"] }
lazy_static = "1.4"
memmap.workspace = true
nalgebra = "0.32"
nod = "1.1"
num-bigint = "0.2"
num-integer = "0.1"
num-traits = "0.2"
rand = "0.7"
serde.workspace = true
serde_json = "1.0"
ssmarshal = "1"
winapi = "0.3"
auto_struct_macros.workspace = true
dol_linker = { path = "dol_linker" }
dol_symbol_table = { path = "generated/dol_symbol_table" }
json_data = { path = "generated/json_data" }
json_strip = { path = "generated/json_strip" }
ppcasm = { path = "ppcasm" }
reader_writer.workspace = true
rel_files = { path = "generated/rel_files" }
resource_info_table.workspace = true
structs = { path = "structs" }
texpresso = "2.0.1"
[profile.release]
lto = "thin"
panic = "unwind"
[workspace]
members = [
"auto_struct_macros",
"dol_linker",
"generated/rel_files",
"generated/resource_info_table",
"generated/resource_info_table/resource_info_table_macro",
"generated/dol_symbol_table",
"generated/dol_symbol_table/dol_symbol_table_macro",
"generated/json_data",
"generated/json_strip",
"ppcasm",
"ppcasm/ppcasm_macro",
"reader_writer",
"structs",
]
[workspace.dependencies]
auto_struct_macros.path = "auto_struct_macros"
byteorder = "1.2"
cc = "1.0"
clap = "2.9"
generic-array = "0.14"
memmap = "0.7"
phf = { version = "0.8", default-features = false }
phf_codegen = "0.8"
proc-macro2 = "1.0"
quote = "1.0"
reader_writer.path = "reader_writer"
resource_info_table.path = "generated/resource_info_table"
serde = { version = "1.0", features = ["derive"] }
syn = { version = "1.0", features = ["full"] }
[lib]
name = "randomprime"
path = "src/lib.rs"
crate-type = ["rlib", "staticlib"]