-
-
Notifications
You must be signed in to change notification settings - Fork 380
Corpus refactoring #3159
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
base: main
Are you sure you want to change the base?
Corpus refactoring #3159
Conversation
@@ -236,9 +236,10 @@ ahash = { workspace = true } # The hash function already used in hashbrown | |||
meminterval = { workspace = true, features = ["serde"] } | |||
backtrace = { workspace = true, optional = true } # Used to get the stacktrace in StacktraceObserver | |||
typed-builder = { workspace = true, optional = true } # Implement the builder pattern at compiletime | |||
fs4 = "0.13.1" |
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.
there should be another dependency on fs2 inside this file
can you delete that?
@@ -227,7 +227,7 @@ hashbrown = { workspace = true, features = [ | |||
"ahash", | |||
], default-features = false } # A faster hashmap, nostd compatible | |||
num-traits = { workspace = true, default-features = false } | |||
serde = { workspace = true, features = ["alloc"] } # serialization lib | |||
serde = { workspace = true, features = ["alloc", "rc"] } # serialization lib |
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.
They warn against adding rc
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.
One big thing we may need to address for corpus at some point is that we now keep all metadata in memory at all times. |
No description provided.