-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 764 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 764 Bytes
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
[package]
name = "lyric_finder"
version = "0.1.5"
edition = "2021"
rust-version.workspace = true
license = "MIT"
description = "A lyric finder library"
authors = ["Thang Pham <phamducthang1234@gmail.com>"]
repository = "https://github.com/aome510/spotify-player/tree/master/lyric_finder"
keywords = ["lyric", "song", "track"]
[dependencies]
anyhow = "1.0.79"
reqwest = { version = "0.11.24", features = ["json"] }
serde = { version = "1.0.196", features = ["derive"] }
html5ever = "0.26.0"
markup5ever_rcdom = "0.2.0"
log = "0.4.20"
[dev-dependencies]
tokio = { version = "1.36.0", features = ["rt", "rt-multi-thread", "macros"] }
env_logger = { version = "0.11.1", default-features = false }
[[example]]
name = "lyric-finder"
path = "examples/lyric-finder.rs"