-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 821 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
[package]
name = "libenchcrack"
description = "Code for cracking minecraft's XP seed"
version = "0.2.0"
authors = ["ImUrX <[email protected]>"]
repository = "https://github.com/ImUrX/libenchcrack"
edition = "2021"
license = "MIT"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
wasm-bindgen = "0.2.75"
wee_alloc = "0.4.5"
js-sys = "0.3.52"
java-rand = "0.2.0"
enum-map = "0.6.4"
strum = "0.21.0"
strum_macros = "0.21.1"
rayon = { version = "1.5.1", optional = true }
wasm-bindgen-rayon = { version = "1.0.3", optional = true, features = ["no-bundler"] }
[dev-dependencies]
wasm-bindgen-test = "0.3.25"
web-sys = { version = "0.3.52", features = ["console"] }
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = 3
lto = true
[features]
threads = ["rayon", "wasm-bindgen-rayon"]