-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (69 loc) · 1.69 KB
/
Cargo.toml
File metadata and controls
74 lines (69 loc) · 1.69 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
[workspace]
members = [
"alsactl/sys",
"alsactl",
"alsahwdep/sys",
"alsahwdep",
"alsatimer/sys",
"alsatimer",
"alsaseq/sys",
"alsaseq",
"alsarawmidi/sys",
"alsarawmidi",
]
default-members = [
"alsactl",
"alsahwdep",
"alsatimer",
"alsaseq",
"alsarawmidi",
]
exclude = [
"gir",
]
[workspace.dependencies]
libc = "0.2"
glib-sys = "0.21"
gobject-sys = "0.21"
alsactl-sys = "0.8.0"
alsahwdep-sys = "0.8.0"
alsarawmidi-sys = "0.8.0"
alsatimer-sys = "0.8.0"
alsaseq-sys = "0.8.0"
bitflags = "2.9"
glib = "0.21"
alsatimer = "0.8.0"
# For development purpose.
[patch.crates-io]
alsactl-sys = { path = "alsactl/sys" }
alsahwdep-sys = { path = "alsahwdep/sys" }
alsatimer-sys = { path = "alsatimer/sys" }
alsatimer = { path = "alsatimer" }
alsaseq-sys = { path = "alsaseq/sys" }
alsarawmidi-sys = { path = "alsarawmidi/sys" }
# For my convenience to generate README.md for each crates by my tool.
[workspace.metadata.library.alsactl]
repository = "https://github.com/alsa-project/alsa-gobject"
purpose = """
operate ALSA Control character device
"""
[workspace.metadata.library.alsahwdep]
repository = "https://github.com/alsa-project/alsa-gobject"
purpose = """
operate ALSA HwDep character device
"""
[workspace.metadata.library.alsarawmidi]
repository = "https://github.com/alsa-project/alsa-gobject"
purpose = """
operate ALSA Rawmidi character device
"""
[workspace.metadata.library.alsatimer]
repository = "https://github.com/alsa-project/alsa-gobject"
purpose = """
operate ALSA Timer character device
"""
[workspace.metadata.library.alsaseq]
repository = "https://github.com/alsa-project/alsa-gobject"
purpose = """
operate ALSA Sequencer character device
"""