rspack_core 0.102.0-beta.1

rspack core
Documentation
1
2
3
4
5
6
7
8
use super::Cache;

/// Cache implementation used when build caching is disabled.
#[derive(Debug)]
pub struct DisableCache;

#[async_trait::async_trait]
impl Cache for DisableCache {}