-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 885 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 885 Bytes
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 = "temple"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
axum = "0.8.6"
chrono = "0.4.42"
clap = { version = "4", features = ["derive"] }
dircpy = "0.3.19"
dirs = "6"
env_logger = "0.11.8"
figment = { version = "0.10", features = ["json", "yaml", "toml", "env"] }
futures-util = "0.3.31"
log = "0.4.28"
mime_guess = "2.0.5"
notify = { version = "8.2.0", features = ["crossbeam-channel"] }
serde = { version = "1", features = ["derive"] }
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = ["full"] }
tokio-stream = { version = "0.1.17", features = ["full"] }
toml = "0.9.8"
tower-http = { version = "0.6.6", features = ["fs"] }
webbrowser = "1.0.6"
[profile.release]
strip = true
opt-level = "s"
codegen-units = 1
lto = true
panic = "unwind"