-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (39 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
52 lines (39 loc) · 1.08 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
[package]
name = "sirius-alpha-rust"
version = "0.1.0"
authors = ["Ganesh Rathinavel <[email protected]>"]
edition = "2018"
resolver = "2"
publish = false
[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]
esp-idf-svc = "0.37.3"
esp-idf-hal = { version = "0.33.2" }
embedded-svc = "0.17.4"
esp-idf-sys = { version = "0.30.6", features = ["binstart"] }
embedded-hal = "0.2.7"
attohttpc = { git = "https://github.com/killyourphone/attohttpc", branch = "esp32", default-features = false, features = ["compress", "json"] }
fern = { version = "0.6.0", features = ["colored"] }
log = "0.4.14"
anyhow = "1.0.51"
thiserror = "1.0.30"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
serde-value = "0.7.0"
strum = "0.24.0"
strum_macros = "0.24.0"
either = "1.6.1"
lazy_static = "1.4.0"
dotenv_codegen = "0.15.0"
[patch.crates-io]
[build-dependencies]
embuild = "0.28"
dotenv = "0.15.0"
anyhow = "1.0"
[features]
default = ["native"]
native = ["esp-idf-sys/native"]