summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 44f70d7f9fa5072dc4bd3cbd4d6788868531ab19 (plain) (blame)
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
[package]
name = "frippy"
version = "0.3.1"
authors = ["Jokler <jokler.contact@gmail.com>"]
repository = "https://github.com/Mavulp/frippy"
readme = "README.md"
license = "MIT"
keywords = ["irc", "bot"]
categories = ["network-programming"]
description = "An IRC Bot"

[[bin]]
name = "frippy"
doc = false

[features]
mysql = ["diesel", "diesel_infer_schema", "diesel_migrations", "dotenv"]

[dependencies]
irc             = "0.13.2"
log             = "0.4.1"
time            = "0.1.39"
rlua            = "0.12.2"
reqwest         = "0.8.4"
select          = "0.4.2"
regex           = "0.2.6"
lazy_static     = "0.2.9"
serde           = "1.0.27"
serde_json      = "1.0.9"
chrono          = "0.4.0"
glob            = "0.2.11"

frippy_derive = { path = "frippy_derive" }

[dependencies.unicode_names]
git = 'https://github.com/Jokler/unicode_names'
branch = 'update-to-latest-unicode'


[dependencies.diesel]
version = "1.0.0-rc1"
optional = true
features = ["mysql", "chrono"]

[dependencies.diesel_infer_schema]
version = "1.0.0-rc1"
optional = true
features = ["mysql"]

[dependencies.diesel_migrations]
version = "1.0.0-rc1"
optional = true
features = ["mysql"]

[dependencies.dotenv]
version = "0.10.1"
optional = true

[dependencies.clippy]
version = "*"
optional = true