Skip to content

Commit

Permalink
Disable serialization for RuntimeVersions
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Sep 4, 2024
1 parent e2b46f5 commit 358ee68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion turbopack/crates/turbopack-core/src/environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,8 @@ pub struct BrowserEnvironment {
#[turbo_tasks::value(shared)]
pub struct EdgeWorkerEnvironment {}

#[turbo_tasks::value(transparent)]
// TODO preset_env_base::Version implements Serialize/Deserialize incorrectly
#[turbo_tasks::value(transparent, serialization = "none")]
pub struct RuntimeVersions(#[turbo_tasks(trace_ignore)] pub Versions);

#[turbo_tasks::function]
Expand Down

0 comments on commit 358ee68

Please sign in to comment.