Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
at main 788 B view raw
1[package] 2name = "ufos-fuzz" 3version = "0.0.0" 4publish = false 5edition = "2021" 6 7[package.metadata] 8cargo-fuzz = true 9 10[dependencies] 11libfuzzer-sys = "0.4" 12ufos = { path = ".." } 13jetstream = { path = "../../jetstream" } 14bincode = { version = "2.0.1", features = ["serde"] } 15cardinality-estimator = { version = "1.0.2", features = ["with_serde"] } 16 17[target.'cfg(not(target_env = "msvc"))'.dependencies] 18tikv-jemallocator = "0.6.0" 19 20[[bin]] 21name = "counts_value" 22path = "fuzz_targets/counts_value.rs" 23test = false 24doc = false 25bench = false 26 27[[bin]] 28name = "estimated_dids_value" 29path = "fuzz_targets/estimated_dids_value.rs" 30test = false 31doc = false 32bench = false 33 34[[bin]] 35name = "cardinality_estimator" 36path = "fuzz_targets/cardinality_estimator.rs" 37test = false 38doc = false 39bench = false