-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.63 KB
/
Cargo.toml
File metadata and controls
46 lines (43 loc) · 1.63 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
[package]
name = "bitaxe-raw"
version = "0.0.1"
edition = "2021"
license = "MIT"
[package.metadata.esp-bootloader-esp-idf]
version = 1
project_name = "bitaxe-raw"
compile_time = "2025-01-12T00:00:00Z"
compile_date = "Jan 12 2025"
compile_time_short = "00:00:00"
idf_ver = "v5.4.1"
min_efuse_blk_rev_full = 0
[dependencies]
const-murmur3 = "0.2.1"
defmt = "0.3.10"
defmt-rtt = "0.4.1"
esp-hal-embassy = { version = "=0.9.1", features = ["esp32s3"] }
esp-hal = { version = "=1.0.0-rc.0", features = ["defmt", "esp32s3", "unstable"] }
esp-bootloader-esp-idf = { version = "0.4.0", features = ["esp32s3"] }
esp-alloc = "0.7.0"
heapless = { version = "0.8.0", features = ["defmt-03"] }
embassy-executor = { version = "0.7.0", features = ["defmt", "task-arena-size-20480"] }
embassy-time = { version = "0.4.0", features = ["generic-queue-8"] }
embedded-io-async = "0.6.1"
hex = { version = "0.4.3", default-features = false }
portable-atomic = { version = "1.5", default-features = false, features = ["critical-section"] }
serde = { version = "1.0.215", default-features = false, features = ["derive"] }
panic-rtt-target = { version = "0.2.0", features = ["defmt"] }
rtt-target = { version = "0.6.1", features = ["defmt"] }
static_cell = { version = "2.1.0", features = ["nightly"] }
embassy-sync = { version = "0.6.2", features = ["defmt"] }
embassy-usb = { version = "0.4.0", features = ["defmt"] }
embassy-futures = { version = "0.1.1", features = ["defmt"] }
embassy-embedded-hal = { version = "0.3.0", features = ["defmt"] }
[profile.release]
codegen-units = 1
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 3
overflow-checks = false