forked from kovaxis/midly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 878 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
[package]
name = "midly"
version = "0.4.1"
edition = "2018"
authors = ["negamartin"]
include = [
"/src/*",
"/Cargo.toml",
]
description = "A pure-rust fast and flexible MIDI parser and writer"
repository = "https://github.com/negamartin/midly"
readme = "README.md"
keywords = ["parser", "audio", "midi"]
categories = ["multimedia", "multimedia::audio", "multimedia::encoding"]
license = "Unlicense"
[features]
default = ["std"]
# Whether to enable use of the standard library and multithreaded midi parsing.
# Enabled by default.
std = ["rayon", "failure/std"]
# Reject corrupted or uncompliant files, even if they could be read anyway.
#
# `ErrorKind::Malformed` errors will be raised if corruption or uncompliance is
# detected.
strict = []
[dependencies]
failure = { version="0.1", default-features=false, features=["derive"] }
rayon = { version="1", optional=true }