[package]
edition = "2024"
name = "kunquant_rust_api"
version = "0.1.0"
authors = ["ZhaorongDai"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for KunQuant financial factor computation library"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ZhaorongDai/KunQuant_rust_api"
[lib]
name = "kunquant_rs"
path = "src/lib.rs"
[[example]]
name = "alpha001_example"
path = "examples/alpha001_example.rs"
[[example]]
name = "simple_example"
path = "examples/simple_example.rs"
[[example]]
name = "streaming_example"
path = "examples/streaming_example.rs"
[[test]]
name = "alpha001_test"
path = "tests/alpha001_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "ndarray_test"
path = "tests/ndarray_test.rs"
[[test]]
name = "stream_debug_test"
path = "tests/stream_debug_test.rs"
[dependencies.libc]
version = "0.2"
[dependencies.thiserror]
version = "2.0.12"
[dev-dependencies.ndarray]
version = "0.15"
[dev-dependencies.rand]
version = "0.8"
[build-dependencies.cc]
version = "1.0"