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
63
64
65
66
67
68
69
|
[package]
name = "wisp"
version = "0.1.2"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
description = "Wisp, your all-in-one Discord companion."
repository = "https://github.com/wispgg/core-next"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 0
[profile.release]
opt-level = 3
[dependencies]
chrono = "0.4"
forecast = "1.1.0"
fuzzy_match = "0.1.1"
geocoding = "0.0.3"
kankyo = "0.2.0"
kitsu = "0.2.0"
lazy_static = "1.0.1"
levenshtein = "1.0.3"
log = "0.4"
rand = "0.5.2"
regex = "*"
reqwest = "0.8"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sys-info = "*"
sysinfo = "0.5"
threadpool = "1.7"
typemap = "0.3"
urbandictionary = "0.3"
# rocket = "0.4.5"
# rocket_contrib = "0.4.5"
# tokio = { version = "0.2.22", features = ["full"] }
# lavalink-rs = { git = "https://gitlab.com/nitsuga5124/lavalink-rs", branch = "songbird" }
[dependencies.parking_lot]
version = "0.6"
features = ["deadlock_detection"]
[dependencies.diesel]
version = "1.0.0"
features = ["postgres", "chrono", "r2d2"]
[dependencies.fern]
version = "0.5"
features = ["colored"]
[dependencies.serenity]
git = "https://github.com/Mishio595/serenity.git"
# path = "/home/fuwn/dev/serenity"
default-features = false
features = ["builder", "client", "cache", "framework", "standard_framework", "gateway", "http", "model", "utils"] # voice
# [dependencies.songbird]
# git = "https://github.com/serenity-rs/serenity"
# rev = "29d639b6288c83df7aeb0a2ced9d2b77ec6c6241"
# default-features = false
# features = ["serenity-native", "gateway"]
[patch.crates-io.openssl]
git = "https://github.com/ishitatsuyuki/rust-openssl"
branch = "0.9.x"
|