forked from Skynet/discord-bot
Compare commits
No commits in common. "0c7a61fbf2f7dee79cd843f6c23979f22d4e2461" and "4b4e5cb2894346684034cba93a5ac1ec6f884f9f" have entirely different histories.
0c7a61fbf2
...
4b4e5cb289
2 changed files with 17 additions and 13 deletions
|
@ -7,4 +7,5 @@ fn_params_layout = "Compressed"
|
||||||
struct_lit_width = 0
|
struct_lit_width = 0
|
||||||
tab_spaces = 2
|
tab_spaces = 2
|
||||||
use_small_heuristics = "Max"
|
use_small_heuristics = "Max"
|
||||||
imports_granularity = "Crate"
|
# imports_granularity = "Crate"
|
||||||
|
|
||||||
|
|
27
Cargo.toml
27
Cargo.toml
|
@ -19,21 +19,24 @@ name = "update_server-icon"
|
||||||
[[bin]]
|
[[bin]]
|
||||||
name = "cleanup_committee"
|
name = "cleanup_committee"
|
||||||
|
|
||||||
# discord library
|
|
||||||
[dependencies.serenity]
|
|
||||||
version = "0.12"
|
|
||||||
default-features = false
|
|
||||||
features = ["client", "gateway", "rustls_backend", "model", "cache"]
|
|
||||||
|
|
||||||
# wolves api
|
|
||||||
[dependencies.wolves_oxidised]
|
|
||||||
git = "https://forgejo.skynet.ie/Skynet/wolves-oxidised.git"
|
|
||||||
features = ["unstable"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
# discord library
|
||||||
|
serenity = { version = "0.12", default-features = false, features = [
|
||||||
|
"client",
|
||||||
|
"gateway",
|
||||||
|
"rustls_backend",
|
||||||
|
"model",
|
||||||
|
"cache",
|
||||||
|
] }
|
||||||
tokio = { version = "1", features = ["macros", "rt-multi-thread", "full"] }
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "full"] }
|
||||||
|
|
||||||
# to make the http requests
|
# wolves api
|
||||||
|
wolves_oxidised = { git = "https://forgejo.skynet.ie/Skynet/wolves-oxidised.git", features = [
|
||||||
|
"unstable",
|
||||||
|
] }
|
||||||
|
# wolves_oxidised = { path = "../wolves-oxidised", features = ["unstable"] }
|
||||||
|
|
||||||
|
# to make the http requests
|
||||||
surf = "2.3"
|
surf = "2.3"
|
||||||
|
|
||||||
dotenvy = "0.15"
|
dotenvy = "0.15"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue