-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
82 lines (65 loc) · 1.25 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
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
[package]
name = "earwig"
version = "0.1.0"
authors = ["sandreae <contact@samandreae.com>"]
edition = "2021"
description = "Ever wanted to pipe raw audio samples around in the terminal to impress your friends at a party? Well then, you've come to the right place."
autobins = false
readme = "README.md"
exclude = [".gitignore"]
[[bin]]
name = "listen"
path = "src/listen.rs"
[[bin]]
name = "play"
path = "src/play.rs"
[[bin]]
name = "silly"
path = "src/silly.rs"
[[bin]]
name = "out"
path = "src/out.rs"
[[bin]]
name = "choppy"
path = "src/choppy.rs"
[[bin]]
name = "clippy"
path = "src/clippy.rs"
[[bin]]
name = "extremely"
path = "src/extremely.rs"
[[bin]]
name = "hungry"
path = "src/hungry.rs"
[[bin]]
name = "imaginary"
path = "src/imaginary.rs"
[[bin]]
name = "randomly"
path = "src/randomly.rs"
[[bin]]
name = "reversi"
path = "src/reversi.rs"
[[bin]]
name = "smashy"
path = "src/smashy.rs"
[[bin]]
name = "smiley"
path = "src/smiley.rs"
[[bin]]
name = "smoothy"
path = "src/smoothy.rs"
[[bin]]
name = "speedy"
path = "src/speedy.rs"
[[bin]]
name = "wobbly"
path = "src/wobbly.rs"
[dependencies]
rand = "0.8.5"
web-audio-api = "0.24.0"
anyhow = "1.0.66"
cpal = "0.14.1"
crossbeam = "0.8.2"
clap = { version = "4.0.26", features = ["derive"] }
image = "0.24.5"