Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 14 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,33 +5,36 @@ version = "0.11.0"
edition = "2024"
readme = "README.md"
keywords = ["acn", "sacn", "dmx", "e131", "ansi"]
authors = ["Lukas Schmierer <lukas.schmierer@lschmierer.de>", "Paul Lancaster <paul@lancasterzone.com>"]
authors = [
"Lukas Schmierer <lukas.schmierer@lschmierer.de>",
"Paul Lancaster <paul@lancasterzone.com>",
]
documentation = "https://github.com/RustLight/sacn"
repository = "https://github.com/RustLight/sacn"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/RustLight/sacn"
exclude = [
"documentation/*",
"further testing/*",
".github/*",
".travis.yml",
".gitignore",
"documentation/*",
"further testing/*",
".github/*",
".travis.yml",
".gitignore",
]

[dependencies]
byteorder = { version = "1.5.0", features = [] }
byteorder = { version = "1.5.0", default-features = false }
libc = { version = "0.2.171" }
socket2 = { version = "0.6.1", features = ["all"] }
thiserror = "2.0.0"
uuid = { version = "1.12", features = ["v4"] }
socket2 = { version = "0.6.1", features = ["all"], optional = true }
thiserror = { version = "2.0.0", default-features = false }
uuid = { version = "1.12", features = ["v4"], default-features = false }

[dev-dependencies]
crossterm = "0.29.0"
serial_test = { version = "3.2.0", features = ["file_locks"] }

[features]
default = ["std"]
std = []
std = ["dep:socket2", "uuid/std"]

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(ci)'] }
Expand Down
9 changes: 9 additions & 0 deletions examples/stm32f7/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
rustflags = ['--cfg', 'getrandom_backend="custom"']
# replace STM32G071C8Rx with your chip as listed in `probe-rs chip list`
runner = "probe-rs run --chip STM32F746NGHx --connect-under-reset --speed 4600"
[build]
target = "thumbv7em-none-eabi" # <-change for your platform

[env]
DEFMT_LOG = "debug" # <- can change to info, warn, or error
Loading