-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.lock
163 lines (142 loc) · 4 KB
/
Cargo.lock
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
[root]
name = "libredio"
version = "0.0.3"
dependencies = [
"bitfount 0.0.2",
"dsputils 0.0.2",
"kissfft 0.0.2",
"kpn 0.0.2",
"num 0.1.22 (git+https://github.com/rust-lang/num)",
"pasimple 0.0.2",
"rtlsdr 0.0.2",
"samplerate 0.0.2",
"time 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
"toml 0.1.20 (git+https://github.com/alexcrichton/toml-rs)",
"vidsink 0.0.2",
]
[[package]]
name = "bitflags"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "bitfount"
version = "0.0.2"
dependencies = [
"dsputils 0.0.2",
"num 0.1.22 (git+https://github.com/rust-lang/num)",
"rtlsdr 0.0.2",
]
[[package]]
name = "dsputils"
version = "0.0.2"
dependencies = [
"num 0.1.22 (git+https://github.com/rust-lang/num)",
]
[[package]]
name = "gcc"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "kissfft"
version = "0.0.2"
dependencies = [
"num 0.1.22 (git+https://github.com/rust-lang/num)",
]
[[package]]
name = "kpn"
version = "0.0.2"
dependencies = [
"dsputils 0.0.2",
]
[[package]]
name = "libc"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "log"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "num"
version = "0.1.22"
source = "git+https://github.com/rust-lang/num#44dfed32b70dc615e5739d5dce372b3db1744cd4"
dependencies = [
"rand 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "num"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "pasimple"
version = "0.0.2"
[[package]]
name = "rand"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rtlsdr"
version = "0.0.2"
dependencies = [
"num 0.1.22 (git+https://github.com/rust-lang/num)",
]
[[package]]
name = "rustc-serialize"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "samplerate"
version = "0.0.2"
[[package]]
name = "sdl2"
version = "0.1.0"
source = "git+https://github.com/AngryLawyer/rust-sdl2#103b85c09f241e5f74a155d67cb413282924ea99"
dependencies = [
"bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"num 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
"sdl2-sys 0.1.0 (git+https://github.com/AngryLawyer/rust-sdl2)",
]
[[package]]
name = "sdl2-sys"
version = "0.1.0"
source = "git+https://github.com/AngryLawyer/rust-sdl2#103b85c09f241e5f74a155d67cb413282924ea99"
dependencies = [
"libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"num 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "time"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"gcc 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "toml"
version = "0.1.20"
source = "git+https://github.com/alexcrichton/toml-rs#67132245640a0d2e95b696163b504553eb55efa5"
dependencies = [
"rustc-serialize 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "vidsink"
version = "0.0.2"
dependencies = [
"dsputils 0.0.2",
"sdl2 0.1.0 (git+https://github.com/AngryLawyer/rust-sdl2)",
]