-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (46 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
55 lines (46 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "face"
version = "0.1.0"
authors = ["Anatolii Maltsev <chemyl.inc@gmail.com>"]
edition = "2021"
resolver = "2"
rust-version = "1.77"
[[bin]]
name = "face"
harness = false # do not use the built in cargo test harness -> resolve rust-analyzer errors
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[features]
default = []
experimental = ["esp-idf-svc/experimental"]
[dependencies]
log = "0.4"
esp-idf-svc = { version = "0.51", features = ["std"] }
esp-idf-hal = "0.45.2"
esp-idf-sys = { version = "^0.36", features = ["binstart"] }
anyhow = "1.0"
heapless = "0.8.0"
image = "0.25.6"
lcd-lcm1602-i2c = "0.3.0"
chrono = { version = "0.4", features = ["serde", "std"] }
serde = "1.0.219"
serde_json = "1.0.143"
embedded-svc = "0.28.1"
sntpc = "0.6.0"
[build-dependencies]
#bindgen = "0.69"
embuild = "0.33"
[dependencies.quircs]
version = "0.10.2"
default-features = false
#features = ["embedded"]
[package.metadata.esp-idf-sys]
extra_components = [
{ path = "components/esp-tflite-micro-wrapper", name = "esp-tflite-micro-wrapper" },
{ git = "https://github.com/espressif/esp-tflite-micro.git", name = "esp-tflite-micro" },
{ git = "https://github.com/espressif/esp-nn.git", name = "esp-nn" },
{ remote_component = { name = "espressif/esp32-camera", git = "https://github.com/espressif/esp32-camera.git", version = "*" } }
]