-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 832 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
[package]
name = "podchamp"
version = "0.5.1"
authors = ["Rachel Knight <[email protected]>"]
repository = "https://github.com/rkanati/podchamp"
edition = "2021"
description = "Fetches your podcasts"
readme = "README.md"
license = "MIT"
keywords = ["podcast", "rss"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "1"
bytes = "1"
chrono = "0.4"
diesel_migrations = "1.4"
directories = "4"
feed-rs = "1"
futures = "0.3"
reqwest = "0.11"
thiserror = "1"
url = "2"
[dependencies.clap]
version = "3"
features = ["derive", "env", "unicode"]
[dependencies.diesel]
version = "1.4"
features = ["sqlite", "chrono"]
[dependencies.tokio]
version = "1"
features = ["macros", "process", "rt"]