-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
27 lines (26 loc) · 922 Bytes
/
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
[package]
name = "ruxguitar"
version = "0.5.1"
edition = "2021"
authors = ["Arnaud Gourlay <[email protected]>"]
description = "Guitar pro tablature player"
repository = "https://github.com/agourlay/ruxguitar"
license = "Apache-2.0"
readme = "README.md"
categories = ["multimedia"]
keywords = ["guitar", "tablature", "music"]
[dependencies]
nom = "7.1.3"
encoding_rs = "0.8.35"
# Can't upgrade iced & iced_aw as it bumps the MSRV to 1.80 which breaks the Win7 & 8 builds :s
iced = { version = "0.13.0", features = ["advanced", "canvas", "tokio", "debug"] }
iced_aw = { version = "0.10.0", default-features = false, features = ["wrap"] }
tokio = { version = "1.42.0", features = ["fs", "sync"] }
rfd = "0.15.1"
log = "0.4.22"
env_logger = "0.11.5"
rustysynth = "1.3.2"
cpal = "0.15.3"
uuid = { version = "1.11.0", features = ["v4"] }
thiserror = "2.0.8"
clap = { version = "4.5.23", features = ["derive", "cargo"] }