-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 720 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 720 Bytes
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
[package]
name = "ukebox"
version = "0.9.2"
authors = ["Anett Seeker"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A ukulele chord toolbox in Rust"
readme = "README.md"
homepage = "https://github.com/noeddl/ukebox"
repository = "https://github.com/noeddl/ukebox"
keywords = ["ukulele", "chords", "music", "cli"]
categories = ["command-line-utilities"]
rust-version = "1.74"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = {version = "4.5", features = ["derive"] }
itertools = "0.14"
lazy_static = "1.5"
petgraph = "0.7"
thiserror = "2.0.11"
[dev-dependencies]
assert_cmd = "2.0"
indoc = "2.0"
predicates = "3.1"
rstest = "0.24"