forked from limeburst/isbn-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (23 loc) · 928 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
[package]
name = "isbn3"
version = "0.4.4"
authors = ["Jihyeok Seo <limeburst@ridi.com>", "Philippe Solodov <solop1906@gmail.com>", "Oliver Schneider <oliver@assarbad.net>"]
description = "A library for handling ISBNs."
license = "MIT"
repository = "https://github.com/assarbad/isbn-rs"
edition = "2021"
rust-version = "1.63.0"
[build-dependencies]
codegen = { version = "0.2", optional = true }
roxmltree = { version = "0.20", optional = true }
[dependencies]
arrayvec = { version = "0.7.1", default-features = false }
quick-xml = { version = "0.36", optional = true, features = ["encoding"] }
indexmap = { version = "2.5", default-features = false, optional = true, features = ["std"] }
serde = { version = "1.0", features = ["derive"], optional = true }
[features]
ranges = ["codegen", "roxmltree"]
runtime-ranges = ["quick-xml", "indexmap", "ranges"]
serialize = ["serde"]
[package.metadata.docs.rs]
all-features = true