-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 1.22 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
[package]
name = "rogue"
description = "A command-line client for Korg Logue devices"
version = "0.1.0"
authors = ["Sebastian Schmidt <[email protected]>"]
repository = "https://github.com/yath/rogue"
homepage = "https://github.com/yath/rogue"
documentation = "https://github.com/yath/rogue"
keywords = ["cli", "logue", "nutekt", "korg"]
categories = ["command-line-utilities"]
license = "GPL-2.0-only"
edition = "2021"
readme = "README.md"
[badges]
maintenance = { status = "passively-maintained" }
[patch.crates-io]
midir = { git = "https://github.com/yath/midir", branch = "direct-output-0.8.0" }
[dependencies]
anyhow = "1.0.68"
byteorder = "1.4.3"
clap = { version = "4.0.32", features = ["derive"] }
crc = "3.0.0"
lazy_static = "1.4.0"
log = "0.4.17"
midir = "0.8.0"
regex = { version = "1.7.0", default-features = false, features = ["std", "unicode-perl"] }
serde = { version = "1.0.152", features = ["serde_derive"] }
serde_json = "1.0.91"
simple_logger = "4.0.0"
strum = { version = "0.24.1", features = ["derive"] }
strum_macros = "0.24.3"
time = { version = "0.3.17", features = ["local-offset"] }
zip = { version = "0.6.3", default-features = false, features = ["deflate"] }
[dev-dependencies]
pretty_assertions = "1.3.0"
rand = "0.8.5"