-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
93 lines (76 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "jiosaavn"
version = "0.1.0"
edition = "2021"
description = "A simple wrapper for JioSaavn API"
authors = ["Hemant Rajput <[email protected]>"]
default-run = "jiosaavn"
[dependencies]
axum = "0.6.20"
base64 = "0.21.4"
dotenv = "0.15.0"
openssl = "0.10.57"
regex = "1.9.5"
reqwest = { version = "0.11.20", features = ["serde_json", "json"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.106"
tokio = { version = "1.32.0", features = ["full"] }
tower = { version = "0.4.13", features = ["limit", "buffer"] }
tower-http = { version = "0.4.4", features = ["cors"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
url = "2.4.1"
vercel_runtime = "1.0.2"
# home
[[bin]]
name = "home"
path = "api/home.rs"
# modules
[[bin]]
name = "modules"
path = "api/modules.rs"
# song
[[bin]]
name = "song_details"
path = "api/song/details.rs"
[[bin]]
name = "song_reco"
path = "api/song/recommend.rs"
# album
[[bin]]
name = "album_details"
path = "api/album/details.rs"
[[bin]]
name = "album_reco"
path = "api/album/recommend.rs"
[[bin]]
name = "album_same_year"
path = "api/album/same_year.rs"
# playlist
[[bin]]
name = "playlist_details"
path = "api/playlist/details.rs"
[[bin]]
name = "playlist_reco"
path = "api/playlist/recommend.rs"
# artist
[[bin]]
name = "artist_details"
path = "api/artist/details.rs"
[[bin]]
name = "artist_reco"
path = "api/artist/recommend.rs"
[[bin]]
name = "artist_songs_albums"
path = "api/artist/songs_albums.rs"
# radio
[[bin]]
name = "create_radio"
path = "api/radio/[path].rs"
[[bin]]
name = "radio_songs"
path = "api/radio/songs.rs"
# not found
[[bin]]
name = "not_found"
path = "api/[...404].rs"