-
Notifications
You must be signed in to change notification settings - Fork 279
/
Cargo.toml
52 lines (47 loc) · 1.68 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
[workspace]
members = [
"worker",
"worker-build",
"worker-macros",
"worker-sandbox",
"worker-sys",
"worker-kv",
"examples/*",
]
exclude = ["examples/coredump", "examples/axum", "templates/*"]
resolver = "2"
[workspace.dependencies]
worker = { path = "./worker" }
async-trait = "0.1.74"
# TODO: Unpin after https://github.com/chronotope/chrono-tz/issues/152
chrono = { version = "0.4.37", default-features = false, features = [
"wasmbind",
] }
futures-channel = "0.3.29"
futures-util = { version = "0.3.29", default-features = false }
http = "1.1.0"
js-sys = "0.3.66"
wasm-bindgen = "0.2.91"
wasm-bindgen-cli-support = "0.2.91"
wasm-bindgen-futures = "0.4.39"
wasm-bindgen-macro-support = "0.2.91"
wasm-bindgen-test = "0.3.39"
[profile.release]
# rustc supports two "optimize for size" levels: opt-level = "s" and "z".
# These names were inherited from clang / LLVM and are not too descriptive
# but "z" is meant to give the idea that it produces smaller binaries than "s".
# https://docs.rust-embedded.org/book/unsorted/speed-vs-size.html#optimize-for-size
opt-level = "z"
# by compiling as a single codegen unit (i.e. not in parallel),
# it's possible to reduce size even further at the expense of
# compilation time
codegen-units = 1
# by enabling link-time optimization, we can reduce size even further
# by telling cargo to optimize at the link stage (in addition to the
# normal optimizations during the compilation stage)
lto = true
# by overriding our dependencies' compilation settings, we can further optimize for size
# https://docs.rust-embedded.org/book/unsorted/speed-vs-size.html#optimizing-dependencies
[profile.release.package."*"]
codegen-units = 1
opt-level = "z"