forked from khyperia/weechat-discord
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
62 lines (51 loc) · 1.21 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
54
55
56
57
58
59
60
61
62
[package]
name = "weechat-discord"
version = "0.2.0"
authors = ["Noskcaj <[email protected]>"]
edition = "2018"
[lib]
name = "weecord"
crate-type = ["dylib"]
[features]
default = ["onig", "logging"]
pcre = ["parsing/pcre"]
onig = ["parsing/onig"]
logging = ["flexi_logger"]
[dependencies]
libc = "0.2.70"
lazy_static = "1.4.0"
dirs = "2.0.2"
crossbeam-channel = "0.4.2"
regex = "1.3.7"
indexmap = "1.3.2"
json = "0.12.4"
[dependencies.flexi_logger]
version = "0.17.1"
optional = true
[dependencies.parking_lot]
rev = "046a171"
git = "https://github.com/terminal-discord/parking_lot"
[dependencies.serenity]
git = "https://github.com/terminal-discord/serenity"
rev = "c4ae4c61"
default_features = false
features = [
"builder",
"cache",
"client",
"gateway",
"model",
"utils",
"rustls_backend",
]
[dependencies.parsing]
path = "parsing"
[dependencies.weechat]
git = "https://github.com/terminal-discord/rust-weechat"
rev = "d49cdd0"
[dependencies.weechat-sys]
git = "https://github.com/terminal-discord/rust-weechat"
rev = "d49cdd0"
#[patch."https://github.com/terminal-discord/rust-weechat"]
#weechat-sys = { path = "../rust-weechat/weechat-sys" }
#weechat = { path = "../rust-weechat/weechat-rs" }