-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 1.44 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 = "foundation"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.43", default-features = false, features = ["macros", "rt-multi-thread", "net", "fs", "sync", "time"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls-webpki-roots"], default-features = false }
axum = { version = "0.8", default-features = false, features = ["tokio", "http1", "json", "query","macros"] }
time = { version = "0.3", default-features = false, features = ["serde", "std", "formatting", "parsing"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "ansi"] }
tower-http = { version = "0.6", default-features = false, features = ["cors", "fs"] }
serde = { version = "1.0", default-features = false, features = ["derive", "rc"] }
serde_yaml = { version = "0.9", default-features = false }
clap = { version = "4.5", features = ["derive", "env"] }
url = { version = "2.5", features = ["serde"], default-features = false }
serde_json = { version = "1.0" }
markdown = "1.0.0-alpha.23"
async-trait = "0.1"
tracing = "0.1"
anyhow = "1.0"
regex = "1.11"
select = "0.6"
asciidork-parser = "0.17.0"
asciidork-dr-html-backend = "0.17.0"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
# by overriding our dependencies' compilation settings, we can further optimize>
# https://docs.rust-embedded.org/book/unsorted/speed-vs-size.html#optimizing-de>
[profile.release.package."*"]
codegen-units = 1