Use the longer format for some dependencies for compatibility with Taplo
Some checks failed
/ check_lfs (pull_request) Successful in 3s
/ lint_fmt (pull_request) Failing after 15s
/ lint_clippy (pull_request) Failing after 15s
/ build (pull_request) Has been skipped

This commit is contained in:
Roman Moisieiev 2025-09-11 10:34:04 +01:00
parent 59566deccf
commit 0c7a61fbf2

View file

@ -19,24 +19,21 @@ 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"]
# to make the http requests
[dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "full"] }
# to make the http requests
surf = "2.3"
dotenvy = "0.15"