-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 985 Bytes
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 985 Bytes
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
[package]
name = "weashadow_client"
version = "0.1.0"
edition = "2021"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1
panic = "abort"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sysfs_gpio = "0.6"
spidev = "0.6.0"
snafu = "0.7.5"
i2cdev = "0.6.0"
hex = "0.4.3"
sysfs-pwm = { git = "https://github.com/rust-embedded/rust-sysfs-pwm" }
clap = { version = "4.4.8", features = ["derive"] }
byteorder = "1.5.0"
nix = "0.27.1"
ioctl-sys = "0.8.0"
derivative = "2.2.0"
timer = "0.2.0"
memmap2 = "0.9.0"
bytemuck = "1.14.0"
framebuffer = "0.3.1"
i-slint-core = { features = ["default", "software-renderer", "software-renderer-rotation"] }
evdev = "0.12.1"
[dependencies.slint]
version = "1.3.0"
default-features = true
features = ["compat-1-2","unsafe-single-threaded", "libm"]
[build-dependencies]
slint-build = "1.3.0"