-
-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Simplify use_asset_cacher
hook
#1032
base: main
Are you sure you want to change the base?
Conversation
@@ -36,7 +40,7 @@ pub enum AssetAge { | |||
|
|||
impl Default for AssetAge { | |||
fn default() -> Self { | |||
Self::Duration(Duration::from_secs(3600)) // 1h | |||
Self::Duration(Duration::from_secs(10)) // 1h |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Revert to 3600
@@ -41,6 +41,7 @@ nokhwa = { version = "0.10.7", features = ["input-native"], optional = true } | |||
paste = "1.0.14" | |||
bitflags = "2.4.1" | |||
bytes = "1.5.0" | |||
tracing.workspace = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tracing.workspace = true | |
tracing = { workspace = true } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Revert this too
No description provided.