-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (31 loc) · 819 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
[package]
name = "xsd-types"
version = "0.9.6"
edition = "2021"
authors = ["Timothée Haudebourg <[email protected]>"]
description = "XSD data types."
categories = ["data-structures"]
keywords = ["xsd", "w3c", "datatype"]
repository = "https://github.com/timothee-haudebourg/xsd-types"
documentation = "https://docs.rs/xsd-types"
license = "MIT/Apache-2.0"
readme = "README.md"
rust-version = "1.70"
[features]
serde = ["dep:serde"]
time = ["dep:time"]
[dependencies]
iref = "3.1"
static-iref = "3.0"
pretty_dtoa = "0.3.0"
num-bigint = "0.4"
num-rational = "0.4"
num-traits = "0.2.15"
lazy_static = "1.4.0"
thiserror = "1.0.38"
once_cell = "1.17.0"
ordered-float = "3.4.0"
chrono = "0.4.26"
static-regular-grammar = "2.0.1"
serde = { version = "1.0", optional = true }
time = { version = "0.3", optional = true }