-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
53 lines (46 loc) · 1.22 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
[package]
name = "frippy"
version = "0.5.1"
authors = ["Jokler <jokler@protonmail.com>"]
repository = "https://github.com/Mavulp/frippy"
readme = "README.md"
license = "MIT"
keywords = ["irc", "bot"]
categories = ["network-programming"]
description = "An IRC Bot"
edition = "2018"
[[bin]]
name = "frippy"
doc = false
[dependencies]
irc = "0.13.6"
log = "0.4.21"
time = { version = "0.3.36", features = ["formatting", "parsing"] }
humantime = "1.3.0"
mlua = { version = "0.9.7", features = ["lua54"] }
reqwest = "0.9.24"
regex = "1.10.4"
lazy_static = "1.4.0"
serde = "1.0.197"
serde_json = "1.0.116"
chrono = "0.4.38"
glob = "0.3.1"
circular-queue = "0.2.6"
failure = "0.1.8"
htmlescape = "0.3.1"
antidote = "1.0.0"
log4rs = "1.3.0"
itertools = "0.8.2"
frippy_derive = { path = "frippy_derive" }
rand = "0.7.3"
[dependencies.unicode_names]
git = 'https://github.com/Jokler/unicode_names'
branch = 'update-to-latest-unicode'
[dependencies.diesel]
version = "2.1.5"
features = ["mysql", "chrono", "r2d2", "time"]
[dependencies.diesel_migrations]
version = "2.1.0"
features = ["mysql"]
[dependencies.r2d2]
version = "0.8.10"