-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (48 loc) · 1.11 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "mif"
version = "0.3.0"
authors = ["Rouven Spreckels <rs@qu1x.dev>"]
edition = "2018"
description = "Memory Initialization File"
documentation = "https://docs.rs/mif"
repository = "https://github.com/qu1x/mif"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [
"intel-quartus-prime",
"mif-dump",
"mif-join",
]
categories = [
"encoding",
"development-tools",
"command-line-utilities",
]
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"RELEASES.md",
]
[badges]
travis-ci = { repository = "qu1x/mif" }
[lib]
name = "mif"
path = "src/lib.rs"
[[bin]]
name = "mif"
path = "src/bin/mif.rs"
required-features = ["bin"]
[dependencies]
num-traits = "0.2"
byteorder = "1"
thiserror = "1"
anyhow = { version = "1", optional = true }
indexmap = { version = "1", features = ["serde-1"], optional = true }
serde = { version = "1", features = ["derive"], optional = true }
toml = { version = "0.5", features = ["preserve_order"], optional = true }
clap = { version = "3.0.0-beta.1", optional = true }
[features]
default = ["bin"]
cli = ["anyhow", "indexmap", "serde", "toml"]
bin = ["cli", "clap"]