Esp32-Cam/examples/camera-example/Cargo.toml

27 lines
626 B
TOML
Raw Normal View History

2024-05-21 12:26:35 +02:00
[package]
name = "camera-example"
2024-08-01 14:19:25 +02:00
version = "0.1.1"
2024-05-21 12:26:35 +02:00
authors = ["Mathias Pius <contact@pius.io>"]
edition = "2021"
rust-version = "1.71"
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[dependencies]
log = { version = "0.4", default-features = false }
anyhow = "1.0.82"
2024-08-01 14:19:25 +02:00
esp-idf-svc = { version = "0.49.1", default-features = false, features = [
2024-05-21 12:26:35 +02:00
"binstart",
"std",
] }
2024-08-01 14:19:25 +02:00
esp-idf-sys = { version = "0.35.0" }
2024-05-21 12:26:35 +02:00
esp-camera-rs = { git = "https://github.com/MathiasPius/esp-camera-rs.git" }
[build-dependencies]
2024-08-01 14:19:25 +02:00
embuild = "0.32.0"