-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
55 lines (46 loc) · 1.66 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
[package]
name = "rss2email"
description = "An RSS feed aggregator that notifies you of new posts via email."
license = "GPL-3.0"
repository = "https://github.com/AntoniosBarotsis/Rss2Email"
keywords = ["rss", "atom", "email"]
categories = ["feed", "email", "blog"]
readme = "README.md"
version = "2.1.0"
edition = "2021"
[[bin]]
name = "rss2email"
path = "src/main.rs"
[lib]
name = "rss2email_lib"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.17"
quick-xml = { version = "0.31", features = ["serialize"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_derive = "1.0.144"
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
itertools = "0.12.1"
env_logger = "0.11.1"
dotenvy = "0.15.5"
regex = "1.7.0"
lazy_static = "1.4.0"
once_cell = "1.15.0"
enum_dispatch = "0.3.8"
futures = "0.3.24"
tokio = { version = "1.25.0", default-features = false, features = ["macros"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking"] }
http = "1.0.0"
resend-rs = { version = "0.4.0", default-features = false, features = ["blocking", "rustls-tls"] }
lambda_runtime = { version = "0.9.1", optional = true }
tracing = { version = "0.1", features = ["log"], optional = true }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"], optional = true }
[features]
aws-lambda = ["dep:lambda_runtime", "dep:tracing", "dep:tracing-subscriber"]
[dev-dependencies]
criterion = { version = "0.5.1", features = [ "html_reports" ]}
pretty_assertions = "1.3.0"
[[bench]]
name = "bench_main"
harness = false