Bump ctor dependency to make nightly compile again (#2713)

This commit is contained in:
Dominik Maier 2024-11-20 18:18:38 -03:00 committed by GitHub
parent 6e707d15bb
commit f3ab3c744e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -139,7 +139,7 @@ num_enum = { workspace = true, default-features = false }
ahash = { workspace = true, optional = true } # The hash function already used in hashbrown ahash = { workspace = true, optional = true } # The hash function already used in hashbrown
backtrace = { workspace = true, default-features = true, optional = true } # Used to get the stacktrace in StacktraceObserver backtrace = { workspace = true, default-features = true, optional = true } # Used to get the stacktrace in StacktraceObserver
ctor = { optional = true, version = "0.2.8" } ctor = { optional = true, version = "0.2.9" }
miniz_oxide = { version = "0.8.0", optional = true } miniz_oxide = { version = "0.8.0", optional = true }
hostname = { version = "0.4.0", optional = true } # Is there really no gethostname in the stdlib? hostname = { version = "0.4.0", optional = true } # Is there really no gethostname in the stdlib?
rand_core = { version = "0.6.4", optional = true } rand_core = { version = "0.6.4", optional = true }

View File

@ -36,7 +36,7 @@ libafl = { workspace = true, features = ["std", "serdeany_autoreg"] }
libafl_bolts = { workspace = true, features = ["std", "serdeany_autoreg"] } libafl_bolts = { workspace = true, features = ["std", "serdeany_autoreg"] }
unchecked_unwrap = "4.0.0" unchecked_unwrap = "4.0.0"
ctor = "0.2.8" ctor = "0.2.9"
libc = { workspace = true } libc = { workspace = true }
[build-dependencies] [build-dependencies]

View File

@ -12,7 +12,7 @@ crate-type = ["dylib"]
[dependencies] [dependencies]
anyhow = { version = "1.0", default-features = false } anyhow = { version = "1.0", default-features = false }
ctor = { version = "0.2", default-features = false } ctor = { version = "0.2.9", default-features = false }
nix = { version = "0.29", default-features = false, features = [ nix = { version = "0.29", default-features = false, features = [
"process", "process",
"personality", "personality",