feat: init the repo

This commit is contained in:
Pratik Bhadane
2026-03-23 23:34:28 +05:30
commit 7a5a220dfe
344 changed files with 75728 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
[package]
name = "ferro_ta_fuzz"
version = "0.0.1"
edition = "2021"
publish = false
# Exclude from the root workspace so cargo doesn't reject it as an unlisted member
[workspace]
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
ferro_ta_core = { path = "../crates/ferro_ta_core" }
[[bin]]
name = "fuzz_sma"
path = "fuzz_targets/fuzz_sma.rs"
test = false
doc = false
bench = false
[[bin]]
name = "fuzz_rsi"
path = "fuzz_targets/fuzz_rsi.rs"
test = false
doc = false
bench = false
[profile.release]
debug = 1