-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCargo.toml
33 lines (30 loc) · 893 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
[package]
name = "xml-schema-derive"
version = "0.3.0"
description = "Structure generator from XSD source file"
edition = "2018"
authors = ["Marc-Antoine Arnaud <[email protected]>"]
keywords = ["XML", "Schema", "XSD"]
license = "MIT"
repository = "https://github.com/media-io/xml-schema"
homepage = "https://github.com/media-io/xml-schema"
documentation = "https://docs.rs/xml_schema"
readme = "../README.md"
[lib]
name = "xml_schema_derive"
proc-macro = true
[features]
default = ["reqwest/default-tls"]
[dependencies]
xml-schema = { path = "../xml_schema"}
darling = "0.20.3"
heck = "0.4"
log = "0.4"
proc-macro2 = "1.0"
quote = "1.0"
reqwest = { version = "0.11", default-features = false, features = ["blocking"] }
simple_logger = "4"
syn = { version = "2.0", features = ["visit", "extra-traits"] }
xml-rs = "0.8"
yaserde_derive = { version = "0.9" }
yaserde = { version = "0.9" }