-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 889 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
[workspace]
members = [
"crates/slipfeed",
"crates/slipknot",
# "crates/slipstream",
]
resolver = "2"
[workspace.package]
version = "0.2.1"
edition = "2021"
authors = ["hachha <hachha@hachha.dev>"]
keywords = []
categories = []
repository = "https://github.com/harrisonhall/slipstream"
description = "Feed fetching, filtering, and combining utilities."
readme = "README.md"
rust-version = "1.82.0"
[workspace.dependencies]
atom_syndication = "0.12"
chrono = { version = "0.4", features = ["serde"] }
clap = {version = "4.5", features = ["derive"] }
futures = "0.3"
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.38", features = ["sync", "rt", "rt-multi-thread", "macros"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[profile.dev]
opt-level = 1
overflow-checks = false