-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 755 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 755 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
[package]
name = "rsid3"
version = "1.0.0-alpha.2"
authors = ["Randoragon <randoragongamedev@gmail.com"]
edition = "2021"
description = "A simple, command line ID3v2 tag editor designed for scripting."
readme = "README.MD"
repository = "https://github.com/randoragon/rsid3"
license = "GPL-2.0-only"
keywords = ["id3v2", "cli", "command", "music", "files"]
categories = ["command-line-utilities", "filesystem", "encoding"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.80"
id3 = "1.16.2"
tempfile = "3.10.1"
[build-dependencies]
anyhow = "1.0.80"
vergen = { version = "8.3.1", features = ["build", "git", "gitcl"] }
[dev-dependencies]
walkdir = "2.5.0"