-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
44 lines (43 loc) · 1.49 KB
/
Cargo.toml
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
[workspace]
members = [
"runtime/core",
"runtime/digi00x",
"runtime/tascam",
"runtime/fireworks",
"runtime/motu",
"runtime/oxfw",
"runtime/bebob",
"runtime/dice",
"runtime/fireface",
# They are now available in crates.io.
# "protocols/alsa-ctl-tlv-codec",
# "protocols/ieee1212-config-rom",
"protocols/ta1394/general",
"protocols/ta1394/audio",
"protocols/ta1394/stream-format",
"protocols/ta1394/ccm",
"protocols/digi00x",
"protocols/tascam",
"protocols/fireworks",
"protocols/motu",
"protocols/oxfw",
"protocols/bebob",
"protocols/dice",
"protocols/fireface",
]
# For development purpose.
[patch.crates-io]
#alsa-ctl-tlv-codec = { path = "protocols/alsa-ctl-tlv-codec" }
#ieee1212-config-rom = { path = "protocols/ieee1212-config-rom" }
ta1394-avc-general = { path = "protocols/ta1394/general" }
ta1394-avc-audio = { path = "protocols/ta1394/audio" }
ta1394-avc-stream-format = { path = "protocols/ta1394/stream-format" }
ta1394-avc-ccm = { path = "protocols/ta1394/ccm" }
firewire-bebob-protocols = { path = "protocols/bebob" }
firewire-digi00x-protocols = { path = "protocols/digi00x" }
firewire-dice-protocols = { path = "protocols/dice" }
firewire-fireworks-protocols = { path = "protocols/fireworks" }
firewire-fireface-protocols = { path = "protocols/fireface" }
firewire-motu-protocols = { path = "protocols/motu" }
firewire-oxfw-protocols = { path = "protocols/oxfw" }
firewire-tascam-protocols = { path = "protocols/tascam" }