-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (70 loc) · 2.73 KB
/
Cargo.toml
File metadata and controls
75 lines (70 loc) · 2.73 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "picocalc-wezterm"
version = "0.1.0"
edition = "2024"
[features]
default = []
pimoroni2w = ["rp235xb"]
pico2w = ["rp235xa"]
rp235xb = ["embassy-rp/rp235xb"]
rp235xa = ["embassy-rp/rp235xa"]
[dependencies]
# panic-probe = { version = "*" }
async-trait = "0.1.88"
bitflags = { version="2.9.0", default-features=false }
cortex-m-rt = { version = "*" }
crc = "3.2.1"
critical-section = "1.2.0"
cyw43 = { version = "*", features = [ "firmware-logs" ] }
cyw43-pio = { version = "*" }
display-interface = "0.5.0"
embassy-embedded-hal = { version = "*" }
embassy-executor = { version = "*", features = [ "arch-cortex-m", "executor-thread", "executor-interrupt", "nightly" ] }
embassy-futures = { version = "*" }
embassy-net = { version = "*", features = ["proto-ipv4", "tcp", "udp", "dhcpv4", "dns"] }
embassy-rp = { version = "*", features = [ "binary-info", "critical-section-impl", "unstable-pac", "time-driver" ] }
embassy-sync = { version = "*" }
embassy-time = { version = "*" }
embassy-usb = { version = "*" }
embassy-usb-logger = { version = "*" }
embedded-alloc = "0.6"
embedded-graphics = "0.8.1"
embedded-graphics-core = "0.4.0"
embedded-hal-bus = "0.3.0"
embedded-nal-async = "0.8.0"
embedded-io = "0.6"
embedded-io-async = "0.6"
embedded-sdmmc = "0.8"
fixed = { version = "*" }
getrandom = { version="0.2", features=["custom"] }
heapless = "0.8"
humansize = {version="2.1.3", features=["no_alloc"]}
log = { version = "*" }
mipidsi = { git = "https://github.com/almindor/mipidsi.git" }
panic-persist = {version="0.3", features=["utf8"]}
postcard = {version="1.1.1", features=["embedded-io-06", "use-crc"]}
profont = "0.7.0"
rand_core = { version = "0.6", default-features = false }
rand_chacha = {version="0.3.0", default-features = false }
sequential-storage = {version="4.0", features=["heapless"]}
serde = { version = "*", default-features = false, features = [ "derive" ] }
serde-json-core = { version = "*" }
sntpc = { version = "0.5.2", default-features = false, features=["embassy-socket"] }
static_cell = { version = "*" }
sunset-embassy = {version="0.2", default-features = false, git = "https://github.com/wez/sunset.git", branch="elided"}
sunset = {version="0.2", default-features = false, git = "https://github.com/wez/sunset.git", branch="elided"}
chrono = { version = "0.4.40", default-features = false }
wezterm-cell = { git="https://github.com/wezterm/wezterm", default-features=false }
wezterm-char-props = { git="https://github.com/wezterm/wezterm", default-features=false }
wezterm-escape-parser = { git="https://github.com/wezterm/wezterm" }
wezterm-surface = { git="https://github.com/wezterm/wezterm" }
[profile.dev]
debug = 2
lto = true
opt-level = "z"
[profile.release]
debug = 2
lto = true
opt-level = "z"
incremental = false
codegen-units = 1