-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 943 Bytes
/
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
[package]
name = "supermarket-tracker"
version = "0.1.0"
authors = ["OverHash <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[lib]
path = "src/lib.rs"
[[bin]]
name = "supermarket-tracker"
path = "src/main.rs"
[dependencies]
reqwest = { version = "0.12.4", default-features = false, features = [
"gzip",
"json",
"native-tls",
"cookies",
] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tokio = { version = "1.34.0", features = ["full"] }
futures = "0.3.29"
sqlx = { version = "0.7.3", features = [
"postgres",
"runtime-tokio-native-tls",
] }
dotenvy = "0.15.7"
error-stack = "0.4.1"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"fmt",
"env-filter",
] }
secrecy = "0.8.0"
[lints.clippy]
cargo = "deny"
pedantic = "deny"
multiple_crate_versions = { level = "allow", priority = 1 }