Compare commits

..

2 commits

Author SHA1 Message Date
Roman Moisieiev
0c7a61fbf2 Use the longer format for some dependencies for compatibility with Taplo 2025-09-11 10:34:04 +01:00
Roman Moisieiev
59566deccf Roll back imports_granularity change 2025-09-11 10:21:46 +01:00
2 changed files with 12 additions and 16 deletions

View file

@ -7,5 +7,4 @@ fn_params_layout = "Compressed"
struct_lit_width = 0
tab_spaces = 2
use_small_heuristics = "Max"
# imports_granularity = "Crate"
imports_granularity = "Crate"

View file

@ -19,22 +19,19 @@ name = "update_server-icon"
[[bin]]
name = "cleanup_committee"
[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"] }
[dependencies.serenity]
version = "0.12"
default-features = false
features = ["client", "gateway", "rustls_backend", "model", "cache"]
# wolves api
wolves_oxidised = { git = "https://forgejo.skynet.ie/Skynet/wolves-oxidised.git", features = [
"unstable",
] }
# wolves_oxidised = { path = "../wolves-oxidised", features = ["unstable"] }
[dependencies.wolves_oxidised]
git = "https://forgejo.skynet.ie/Skynet/wolves-oxidised.git"
features = ["unstable"]
[dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "full"] }
# to make the http requests
surf = "2.3"