-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (43 loc) · 900 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "pugbot"
version = "0.2.0"
authors = ["Matt DeBoard <[email protected]>"]
edition = "2018"
[lib]
name = "pugbot"
path = "src/pugbot/lib.rs"
[[bin]]
name = "pugbot"
path = "src/main.rs"
test = false
[dependencies]
bigdecimal = { version = ">= 0.0.10, < 0.2.0" }
diesel = { version = "1.4.6", features = [
"64-column-tables",
"bigdecimal",
"chrono",
"numeric",
"postgres",
"serde_json",
"uuid",
] }
# diesel_cli must be installed via the following command:
# cargo install diesel_cli --no-default-features --features postgres
diesel_migrations = "1.4.0"
env_logger = "~0.4"
glicko2 = "*"
kankyo = "~0.1"
log = "~0.3"
num = "*"
r2d2 = "*"
r2d2-diesel = "*"
rand = "0.6.5"
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
serenity = "^0.10.5"
tokio = { version = "1", features = ["full"] }
typemap = "0.3"
[dev-dependencies]
tokio-test = "*"
futures = "0.3"