fix(ci): avoid nightly trait solver memory regression

pull/446/head
zijiren233 4 weeks ago
parent 6b2a2375b8
commit 2f2cd00880
No known key found for this signature in database
GPG Key ID: 534E082AAA9B39DC

@ -1,2 +1,3 @@
[build]
rustflags = ["-Zthreads=8", "-Zshare-generics=y"]
# The nightly global next solver exceeds CI memory on synctv-api-http; see rust-lang/rust#161748.
rustflags = ["-Zthreads=8", "-Zshare-generics=y", "-Znext-solver=coherence"]

@ -1,5 +1,3 @@
#![recursion_limit = "256"]
#[cfg(all(feature = "tls-aws-lc", feature = "tls-ring"))]
compile_error!("features \"tls-aws-lc\" and \"tls-ring\" are mutually exclusive - use only one");

@ -1,5 +1,3 @@
#![recursion_limit = "256"]
pub mod grpc;
pub mod grpc_support;
pub(crate) mod providers;

@ -1,5 +1,3 @@
#![recursion_limit = "256"]
pub mod http;
#[cfg(feature = "openapi")]
pub mod openapi;

@ -1,5 +1,3 @@
#![recursion_limit = "256"]
#[cfg(all(feature = "tls-aws-lc", feature = "tls-ring"))]
compile_error!("features \"tls-aws-lc\" and \"tls-ring\" are mutually exclusive - use only one");

@ -1,6 +1,5 @@
//! Tests for the SliceCache range-request caching system.
#![recursion_limit = "256"]
#![allow(clippy::unwrap_used)]
use std::collections::HashMap;

@ -1,5 +1,3 @@
#![recursion_limit = "256"]
//! SyncTV server library.
//!
//! This crate provides the main server implementation for SyncTV.

@ -1,4 +1,3 @@
#![recursion_limit = "256"]
#![allow(clippy::unwrap_used)]
use std::collections::HashMap;

Loading…
Cancel
Save