-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 871 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
[package]
name = "lyric_finder"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "A lyric finder library"
authors = [
"Thang Pham <[email protected]>",
"Cycle Five <[email protected]>",
]
repository = "https://github.com/cycle-five/lyric-finder"
keywords = ["lyric", "song", "track"]
[features]
default = ["rustls-tls"]
rustls-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]
[dependencies]
reqwest = { version = "0.12", features = ["json"], default-features = false }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
html5ever = "=0.27.0"
markup5ever_rcdom = "0.3"
log = "0.4"
[dev-dependencies]
tokio = { version = "1.42", features = ["rt", "rt-multi-thread", "macros"] }
env_logger = { version = "0.11", default-features = false }
[[example]]
name = "lyric-finder"
path = "examples/lyric-finder.rs"