-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
44 lines (38 loc) · 1.2 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
[package]
name = "feedlynx"
version = "0.2.2"
edition = "2021"
description = "Collect links to read or watch later in your RSS reader."
license = "MIT OR Apache-2.0"
authors = [
"Wesley Moore <[email protected]>"
]
homepage = "https://github.com/wezm/feedlynx"
repository = "https://github.com/wezm/feedlynx"
keywords = ["rss", "cli", "feed", "atom"]
categories = ["command-line-utilities", "web-programming"]
[dependencies]
atom_syndication = { version = "0.12.3", default-features = false }
chrono = { version = "0.4.38", default-features = false, features = ["now", "std"] }
env_logger = { version = "0.11.5", default-features = false, features = ["humantime"]}
form_urlencoded = "1.2.1"
html5gum = "0.5.7"
httpdate = "1.0.3"
libc = "0.2.155"
log = "0.4.22"
mime = "0.3.17"
minreq = "2.12.0"
pico-args = "0.5.0"
tiny_http = "0.12.0"
tinyjson = "2.5.1"
uriparse = "0.6.4"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.52", features = ["Win32_Foundation", "Win32_System_Threading", "Win32_Security", "Win32_System_Console"] }
[profile.release]
strip = "debuginfo"
[profile.test]
opt-level = 1
[features]
default = ["rust-tls"]
native-tls = ["minreq/https-native"]
rust-tls = ["minreq/https-rustls"]