-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.11 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
cargo-features = ["profile-rustflags"]
[package]
name = "api-formatter"
version = "0.2.2"
authors = ["cyrix126 <[email protected]>"]
description = "Proxy to format output of API in a human readable way"
documentation = "https://github.com/cyrix126/api-formatter"
edition = "2021"
[profile.release]
panic = "abort"
lto = "fat"
codegen-units = 1
incremental = false
strip = "symbols"
rustflags = ["-Zlocation-detail=none"]
[profile.dev]
opt-level = 1
debug = true
strip = "none"
debug-assertions = true
overflow-checks = true
incremental = true
[dependencies]
readable = {version="0.16", default-features=false, features=["num"]}
axum = {version="0.7", default-features= false, features= ["tokio", "http2"]}
tokio = {version="1", default-features=false, features= ["rt-multi-thread"]}
reqwest = {version="0.12", default-features=false, features=["json", "rustls-tls", "http2"]}
anyhow = "1.0"
confy = "0.6"
url = {version="2.5.0", features=["serde"]}
serde = { version = "1", features = ["derive"]}
serde_json = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
cfg-if = "1.0"
[features]
default=["reduce-big-numbers"]
reduce-big-numbers=[]