-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
135 lines (126 loc) · 2.84 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[package]
name = "retrack"
version = "0.0.1"
authors = ["Aleh Zasypkin <[email protected]>"]
description = "Tracks changes in a web page, API, or file."
edition = "2021"
[[bin]]
name = "retrack"
path = "src/main.rs"
[workspace]
members = [
"components/retrack-types"
]
[dependencies]
actix-cors = "0.7.0"
actix-web = "4.9.0"
actix-web-lab = "0.23.0"
anyhow = "1.0.95"
async-stream = "0.3.6"
byte-unit = "5.1.6"
bytes = "1.9.0"
calamine = "0.26.1"
chrono = { version = "0.4.39", default-features = false }
clap = "4.5.27"
croner = "2.1.0"
csv = "1.3.1"
deno_core = "0.333.0"
dotenvy = "0.15.7"
figment = "0.10.19"
futures = "0.3.31"
handlebars = "6.3.0"
http = "1.2.0"
http-cache-reqwest = "0.15.0"
http-serde = "2.1.1"
humantime = "2.1.0"
itertools = "0.14.0"
lettre = { version = "0.11.11", default-features = false }
mediatype = "0.19.18"
postcard = { version = "1.1.1", default-features = false }
regex = "1.11.1"
reqwest = { version = "0.12.12", default-features = false }
reqwest-middleware = "0.4.0"
reqwest-tracing = "0.5.5"
retrack-types = { path = "components/retrack-types" }
rust-embed = "8.5.0"
rustls = "0.23.21"
serde = "1.0.217"
serde_bytes = "0.11.15"
serde_json = "1.0.137"
serde_with = "3.12.0"
similar = "2.7.0"
sqlx = { version = "0.8.2", default-features = false }
thiserror = "2.0.11"
time = "0.3.37"
tokio = "1.43.0"
tokio-cron-scheduler = "0.13.0"
tracing = "0.1.41"
tracing-actix-web = "0.7.15"
tracing-subscriber = "0.3.19"
trust-dns-resolver = "0.23.2"
url = "2.5.4"
urlencoding = "2.1.3"
utoipa = "5.3.1"
utoipa-rapidoc = "6.0.0"
uuid = "1.12.1"
[dev-dependencies]
httpmock = "0.7.0"
insta = "1.42.0"
test-log = "0.2.17"
toml = "0.8.19"
[features]
default = [
"byte-unit/serde",
"clap/cargo",
"clap/env",
"figment/env",
"figment/toml",
"handlebars/rust-embed",
"insta/filters",
"insta/json",
"insta/redactions",
"insta/toml",
"lettre/builder",
"lettre/smtp-transport",
"lettre/tokio1-rustls-tls",
"mediatype/serde",
"postcard/use-std",
"reqwest/http2",
"reqwest/json",
"reqwest/rustls-tls-native-roots",
"reqwest-middleware/json",
"serde_with/time_0_3",
"sqlx/json",
"sqlx/macros",
"sqlx/migrate",
"sqlx/runtime-tokio-rustls",
"sqlx/postgres",
"sqlx/time",
"sqlx/uuid",
"time/formatting",
"time/macros",
"tokio/rt-multi-thread",
"tokio/macros",
"tokio-cron-scheduler/postgres_storage",
"tracing-actix-web/uuid_v7",
"tracing-subscriber/env-filter",
"tracing-subscriber/json",
"url/serde",
"utoipa/actix_extras",
"utoipa/time",
"utoipa/url",
"utoipa/uuid",
"utoipa-rapidoc/actix-web",
"uuid/v7",
"uuid/serde"
]
[profile.release]
strip = true
lto = true
panic = "abort"
[profile.dev.package.sqlx-macros]
opt-level = 3
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3