-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (40 loc) · 1.08 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
[package]
name = "stovbot"
version = "0.19.0"
authors = ["Steve Mostovoy <[email protected]>"]
edition = "2018"
default-run = "stovbot"
[[bin]]
name = "stovbot"
path = "src/stovbot.rs"
[[bin]]
name = "script_engine"
path = "src/script_engine.rs"
[profile.dev]
opt-level = 0
lto = false
codegen-units = 8
[dependencies]
twitchchat = "0.7.2"
reqwest = { version = "0.10.1", features = ["blocking", "json"] }
chrono = { version = "0.4.10"}
serde = { version = "1.0", features = ["derive", "rc"] }
serenity = {version = "0.8.0" }
rhai = { git = "https://github.com/stovoy/rhai", branch = "master" }
logos = "0.9.7"
rand = "0.7.3"
rusqlite = "0.21.0"
time = "0.1.0"
toml = "0.5.5"
iced = { git = "https://github.com/hecrj/iced", branch = "master" }
iced_native = { git = "https://github.com/hecrj/iced", branch = "master" }
iced_core = { git = "https://github.com/hecrj/iced", branch = "master" }
crossbeam = "0.7.3"
serde_json = "1.0.44"
futures = "0.3.1"
async-std = "1.4.0"
env_logger = "0.7.1"
rocket = { version = "0.4.2", default-features = false }
clap = "2.33.0"
regex = "1"
base64 = "0.12"