-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
37 lines (33 loc) · 937 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
28
29
30
31
32
33
34
35
36
37
[package]
name = "rekordcrate"
version = "0.3.0"
authors = ["Jan Holthuis <[email protected]>"]
description = "Library for parsing Pioneer Rekordbox device exports"
readme = "README.md"
repository = "https://github.com/Holzhaus/rekordcrate"
license = "MPL-2.0"
keywords = ["rekordbox", "dj", "export", "database", "parser"]
categories = ["parser-implementations"]
edition = "2021"
exclude = [".*"]
[dependencies]
binrw = "0.14"
modular-bitfield = "0.11"
crc16 = "0.4"
clap = { version = "4.5", features = ["derive"], optional = true }
parse-display = "0.10"
thiserror = "2.0"
quick-xml = { version = "0.37.2", features = ["serialize", "serde-types"] }
serde = { version = "1.0", features = ["derive"] }
chrono = "0.4"
[build-dependencies]
glob = "0.3"
[dev-dependencies]
pretty-hex = "0.4"
pretty_assertions = "1"
[features]
default = ["cli"]
cli = ["dep:clap"]
[[bin]]
name = "rekordcrate"
required-features = ["cli"]