-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (30 loc) · 1.07 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
[package]
name = "turbo-remote-cache-rs"
version = "0.3.4"
edition = "2021"
license = "MIT"
publish = true
repository = "https://github.com/salamaashoush/turbo-remote-cache-rs"
description = "A remote cache server for turbo"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "^4"
serde = { version = "^1.0", features = ["derive"] }
env_logger = "^0.11"
log = "^0.4"
actix-cors = "^0.7"
dotenvy = "^0.15"
futures-util = "^0.3"
object_store = { version = "^0.11", features = ["aws", "azure", "gcp"] }
[profile.dev]
codegen-units = 16 # debug build will cause runtime panic if codegen-unints is default
debug = 2
incremental = true
panic = "abort"
[profile.release]
codegen-units = 1
debug = false
lto = "thin" # Performs “thin” LTO. This is similar to “fat”, but takes substantially less time to run while still achieving performance gains similar to “fat”.
opt-level = 3
panic = "abort"
strip = true