-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 704 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 704 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
29
[package]
name = "marc"
version = "3.1.1"
authors = ["AIkorsky <aikorsky@gmail.com>"]
description = "Reader and builder for MARC 21 Bibliographic format"
license = "MIT/Apache-2.0"
repository = "https://github.com/blackbeam/rust-marc"
documentation = "https://blackbeam.github.io/rust-marc"
readme = "README.md"
keywords = ["MARC", "MARC21", "bibliographic", "parser", "builder"]
exclude = [".*", "test"]
edition = "2021"
[lib]
name = "marc"
path = "src/lib.rs"
[features]
default = []
nightly = []
xml = ["dep:xml-rs"]
[dependencies]
xml-rs = { version = "0.8", optional = true }
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
no-default-features = true
features = ["default", "xml"]