-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (51 loc) · 1.12 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
[package]
name = "rsbuf"
version = "225.1.5"
edition = "2021"
authors = ["2004Scape"]
description = "A RuneScape update info computer."
license = "MIT"
license-file = "LICENSE.md"
repository = "https://github.com/2004scape/rsbuf"
homepage = "https://github.com/2004scape/rsbuf#readme"
readme = "README.md"
keywords = [
"runescape",
"rust",
"webassembly"
]
categories = ["game-engines", "game-development"]
exclude = [".github", "package.json"]
[dev-dependencies]
criterion = "0.5.1"
[dependencies]
wasm-bindgen = "0.2.95"
num-bigint = "0.4.6"
rsa = "0.9.6"
pem = "3.0.4"
num-traits = "0.2.19"
once_cell = "1.20.2"
getrandom = { version = "0.2.15", features = ["js"] }
[lib]
crate-type = ["cdylib", "lib"]
[[bench]]
name = "packet"
harness = false
[[bench]]
name = "build"
harness = false
[profile.release]
lto = true
opt-level = 3
[package.metadata.wasm-pack.profile.release]
wasm-opt = [
"--generate-global-effects",
"--optimize-instructions",
"--memory-packing",
"--intrinsic-lowering",
"--flexible-inline-max-function-size",
"4294967295",
"--inlining",
"--inlining-optimizing",
"-O4",
]