-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
68 lines (62 loc) · 1.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "adsbdb"
version = "0.4.1"
edition = "2021"
authors = ["Jack Wills <[email protected]>"]
description = "aircraft & flightroute api"
repository = "https://github.com/mrjackwills/adsbdb"
homepage = "https://www.adsbdb.com"
license = "MIT"
rust-version = "1.82.0"
readme = "README.md"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
enum_glob_use = "deny"
expect_used = "warn"
todo = "warn"
unused_async = "warn"
unwrap_used = "warn"
module_name_repetitions = "allow"
doc_markdown = "allow"
[dependencies]
argon2 ="0.5"
axum = {version = "0.8", features=["macros"]}
dotenvy = "0.15"
fred = { version = "10.0" }
http-body = "1.0"
mimalloc = "0.1"
rand = { version = "0.8" }
reqwest = { version = "0.12", default-features = false, features = [
"brotli",
"cookies",
"gzip",
"json",
"multipart",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = [
"macros",
"postgres",
"runtime-tokio-rustls",
"time",
] }
thiserror = "2.0"
tokio = { version = "1.43", features = ["full"] }
tower = { version = "0.5", features = ["full"] }
tower-http = { version = "0.6", features = ["full"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["json"] }
[dev-dependencies]
regex = "1.11"
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
strip = true
debug = false