-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (47 loc) · 1.34 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
[package]
name = "rust-utilizing-spotify-tracker"
version = "0.1.0"
authors = [
"Rylan <[email protected]>",
"Antonia \"Nia\" Calia-Bogan <[email protected]>",
"Gabe Maayan <[email protected]>",
"Leland Liu <[email protected]>"
]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Handlebars templating
handlebars = {version="3.0.1", features=["dir_source"]}
# Actix stuff
actix-rt = "1.0.0"
actix-web = {version="2.0.0", features=["openssl"]}
actix-files = "~0.2"
actix-session = "0.3.0"
# URL percent encoding
percent-encoding = "2.1.0"
# SSL/TLS crate
openssl = "0.10.28"
# Logger
env_logger = "0.7.1"
log = "0.4.8"
# Serialization/Deserialization
serde = "~1"
serde_derive = "~1"
serde_urlencoded = "0.6.1"
url = { version = "2.0", features = ["serde"] }
serde_json = "1.0"
# Random number generator
rand = "0.7.3"
# Regular expressions
regex = "1.3.6"
# Lazily evaluated statics
lazy_static = "1.4.0"
# Spotify API structure
# Only using the 'model' and 'senum' modules -- Don't use anything else.
# These models should accurately represent spotify's data model, and they
# all have serialization and deserialization already.
rspotify = "0.9.0"
# Data visualization
svg = "0.7.1"
failure = "0.1.7"
plotlib = { path = "plotlib", version = "0.5.1" }