[package] name = "fido-authenticator-fuzz" version = "0.0.0" publish = false edition = "2021" [package.metadata] cargo-fuzz = true [dependencies] ctap-types = { version = "=0.6.0-rc.3", features = ["arbitrary"] } libfuzzer-sys = "0.4" trussed = { version = "0.1", features = ["certificate-client", "crypto-client", "filesystem-client", "management-client", "aes256-cbc", "ed255", "p256", "sha256"] } trussed-staging = { version = "0.4.0", features = ["chunked", "hkdf", "virt", "fs-info"] } [dependencies.fido-authenticator] path = ".." [[bin]] name = "ctap" path = "fuzz_targets/ctap.rs" test = false doc = false bench = false [patch.crates-io] trussed = { git = "https://github.com/trussed-dev/trussed.git", rev = "ad577412599156ac98f29ee969e76537e506f2bc" } trussed-staging = { git = "https://github.com/trussed-dev/trussed-staging.git", tag = "v0.4.0" }