-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (48 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
57 lines (48 loc) · 1.43 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
[package]
name = "sacn"
description = "A Rust implementation of the ANSI E1.31 Streaming ACN protocol, tested against protocol version ANSI E1.31-2018."
version = "0.11.1"
edition = "2024"
rust-version = "1.88"
readme = "README.md"
keywords = ["acn", "sacn", "dmx", "e131", "ansi"]
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",
]
[dependencies]
byteorder = { version = "1.5.0", features = [] }
libc = { version = "0.2.171" }
socket2 = { version = "0.6.1", features = ["all"] }
thiserror = "2.0.0"
uuid = { version = "1.12", features = ["v4"] }
[dev-dependencies]
crossterm = "0.29.0"
serial_test = { version = "3.2.0", features = ["file_locks"] }
[features]
default = ["std"]
std = []
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(ci)'] }
[badges]
travis-ci = { repository = "Lan2u/RustSacn" }
[[example]]
name = 'simple-receiver'
path = 'examples/simple-receiver.rs'
[[example]]
name = 'sine-wave-sender'
path = 'examples/sine-wave-sender.rs'
[[example]]
name = 'demo_rcv'
path = 'examples/demo_rcv/src/main.rs'
[[example]]
name = 'demo_src'
path = 'examples/demo_src/src/main.rs'