diff --git a/crates/core/config/Revolt.toml b/crates/core/config/Revolt.toml index 6c0ec33c..7bb8aab5 100644 --- a/crates/core/config/Revolt.toml +++ b/crates/core/config/Revolt.toml @@ -62,8 +62,6 @@ expire_account_deletion = 86400 # 3600 * 24 [api.security] # Authifier Shield API key authifier_shield_key = "" -# Legacy voice server management token -voso_legacy_token = "" # Whether services are behind the Cloudflare network trust_cloudflare = false # easypwned endpoint diff --git a/crates/core/config/src/lib.rs b/crates/core/config/src/lib.rs index 1c354769..bcb5743c 100644 --- a/crates/core/config/src/lib.rs +++ b/crates/core/config/src/lib.rs @@ -223,7 +223,6 @@ pub struct ApiSecurityShield { #[derive(Deserialize, Debug, Clone)] pub struct ApiSecurity { pub shield: ApiSecurityShield, - pub voso_legacy_token: String, pub captcha: ApiSecurityCaptcha, pub trust_cloudflare: bool, pub easypwned: String, diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ed196614..30833908 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,3 @@ [toolchain] -channel = "1.92.0" \ No newline at end of file +channel = "1.92.0" +components = ["rust-analyzer"] \ No newline at end of file