meteor_detect/demos/Cargo.toml

43 lines
984 B
TOML

[package]
name = "meteor-detect-demos"
version = "0.1.0"
edition = "2021"
authors = ["Meteor Detection Team"]
description = "Demonstration programs for the Meteor Detection System"
[features]
default = []
gpio = ["meteor_detect/gpio"] # Pass gpio feature to the main project
gstreamer-display = ["meteor_detect/gstreamer-display"] # Pass gstreamer-display feature to the main project
[dependencies]
meteor_detect = { path = ".." }
tokio = { version = "1", features = ["full"] }
opencv = { version = "0.94.2" } # OpenCV bindings
anyhow = "1.0"
chrono = "0.4"
log = "0.4"
env_logger = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono-tz = "0.9.0" # Timezone support
fitsio = "0.20.0"
freetype-rs = "0.38.0"
[[bin]]
name = "camera_demo"
path = "camera_demo.rs"
[[bin]]
name = "watermark_demo"
path = "watermark_demo.rs"
[[bin]]
name = "file_input_demo"
path = "file_input_demo.rs"
[[bin]]
name = "star_chart_demo"
path = "star_chart_demo.rs"