38 lines
778 B
TOML
38 lines
778 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"
|
|
|
|
[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"
|