├── .gitattributes
├── .github
└── workflows
│ └── main.yml
├── .gitignore
├── Cargo.lock
├── Cargo.toml
├── LICENSE
├── README.md
├── doc
├── overview.excalidraw
└── overview.svg
├── examples
├── README.md
└── read_write
│ ├── .gitignore
│ ├── Cargo.lock
│ ├── Cargo.toml
│ ├── README.md
│ ├── build.rs
│ ├── input.xml
│ ├── my-schema.xsd
│ ├── output.xml
│ └── src
│ └── main.rs
├── rust-toolchain.toml
├── xsd-parser-types
├── Cargo.toml
└── src
│ ├── lib.rs
│ ├── misc
│ ├── mod.rs
│ ├── namespace.rs
│ ├── namespace_prefix.rs
│ └── raw_byte_str.rs
│ ├── quick_xml
│ ├── deserialize.rs
│ ├── error.rs
│ ├── mod.rs
│ ├── reader
│ │ ├── error_reader.rs
│ │ ├── io_reader.rs
│ │ ├── mod.rs
│ │ └── slice_reader.rs
│ └── serialize.rs
│ ├── traits
│ ├── as_any.rs
│ ├── mod.rs
│ └── with_namespace.rs
│ └── xml
│ ├── attributes.rs
│ ├── element.rs
│ ├── mixed.rs
│ ├── mod.rs
│ ├── namespaces.rs
│ ├── nillable.rs
│ ├── text.rs
│ └── value.rs
└── xsd-parser
├── Cargo.toml
├── build.rs
├── examples
├── README.md
├── custom_names.rs
├── custom_render_step.rs
├── custom_variants.rs
├── simple.rs
└── update_schema.rs
├── schema
├── XMLSchema.xsd
└── xml.xsd
├── src
├── config
│ ├── generator.rs
│ ├── interpreter.rs
│ ├── mod.rs
│ ├── optimizer.rs
│ ├── parser.rs
│ └── renderer.rs
├── lib.rs
├── macros.rs
├── meta_types_printer.rs
├── models
│ ├── code
│ │ ├── ident_path.rs
│ │ ├── mod.rs
│ │ └── module.rs
│ ├── data
│ │ ├── build_in.rs
│ │ ├── complex.rs
│ │ ├── constrains.rs
│ │ ├── custom.rs
│ │ ├── dynamic.rs
│ │ ├── enumeration.rs
│ │ ├── mod.rs
│ │ ├── occurs.rs
│ │ ├── path_data.rs
│ │ ├── reference.rs
│ │ ├── simple.rs
│ │ ├── tag_name.rs
│ │ ├── type_.rs
│ │ ├── types.rs
│ │ └── union.rs
│ ├── ident.rs
│ ├── meta
│ │ ├── attribute.rs
│ │ ├── base.rs
│ │ ├── complex.rs
│ │ ├── custom.rs
│ │ ├── dynamic.rs
│ │ ├── element.rs
│ │ ├── enumeration.rs
│ │ ├── mod.rs
│ │ ├── reference.rs
│ │ ├── simple.rs
│ │ ├── type_.rs
│ │ ├── type_eq.rs
│ │ ├── types.rs
│ │ └── union.rs
│ ├── mod.rs
│ ├── name.rs
│ ├── naming.rs
│ └── schema
│ │ ├── mod.rs
│ │ ├── occurs.rs
│ │ ├── qname.rs
│ │ ├── xs.rs
│ │ └── xs_generated.rs
├── pipeline
│ ├── generator
│ │ ├── context.rs
│ │ ├── data
│ │ │ ├── complex.rs
│ │ │ ├── constrains.rs
│ │ │ ├── dynamic.rs
│ │ │ ├── enumeration.rs
│ │ │ ├── mod.rs
│ │ │ ├── reference.rs
│ │ │ ├── simple.rs
│ │ │ ├── type_.rs
│ │ │ └── union.rs
│ │ ├── error.rs
│ │ ├── meta.rs
│ │ ├── mod.rs
│ │ └── state.rs
│ ├── interpreter
│ │ ├── error.rs
│ │ ├── mod.rs
│ │ ├── name_builder.rs
│ │ ├── post_process.rs
│ │ ├── schema.rs
│ │ ├── state.rs
│ │ └── variant_builder.rs
│ ├── mod.rs
│ ├── optimizer
│ │ ├── dynamic_to_choice.rs
│ │ ├── empty_enums.rs
│ │ ├── empty_unions.rs
│ │ ├── flatten_complex_type.rs
│ │ ├── flatten_unions.rs
│ │ ├── merge_choice_cardinality.rs
│ │ ├── merge_enum_unions.rs
│ │ ├── misc
│ │ │ ├── base_map.rs
│ │ │ ├── mod.rs
│ │ │ └── typedef_map.rs
│ │ ├── mod.rs
│ │ ├── remove_duplicates.rs
│ │ ├── replace_xs_any_type_with_any_element.rs
│ │ ├── resolve_typedefs.rs
│ │ ├── simplify_mixed_types.rs
│ │ └── unrestricted_base.rs
│ ├── parser
│ │ ├── error.rs
│ │ ├── mod.rs
│ │ └── resolver
│ │ │ ├── file_resolver.rs
│ │ │ ├── many_resolver.rs
│ │ │ ├── mod.rs
│ │ │ ├── noop_resolver.rs
│ │ │ └── web_resolver.rs
│ └── renderer
│ │ ├── context.rs
│ │ ├── error.rs
│ │ ├── meta.rs
│ │ ├── mod.rs
│ │ └── steps
│ │ ├── defaults.rs
│ │ ├── mod.rs
│ │ ├── namespace_const.rs
│ │ ├── prefix_const.rs
│ │ ├── quick_xml
│ │ ├── deserialize.rs
│ │ ├── mod.rs
│ │ └── serialize.rs
│ │ ├── serde
│ │ ├── mod.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_xml_rs_v7.rs
│ │ └── serde_xml_rs_v8.rs
│ │ ├── types.rs
│ │ └── with_namespace_trait.rs
└── traits
│ ├── mod.rs
│ ├── naming.rs
│ └── vec_helper.rs
└── tests
├── README.md
├── download
├── feature
├── absolute_paths
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── all
│ ├── example
│ │ ├── default.xml
│ │ ├── serde.xml
│ │ └── serialize.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── any
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── any_type
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── any_type_nested
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── build_in
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── choice
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── choice_flatten_content
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── choice_with_sequence
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── complex_type_empty
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── complex_type_with_group
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── complex_type_with_repeated_content
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── custom_type
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── derive
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── documentation
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── dynamic_types
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── default_optimized.rs
│ │ ├── quick_xml.rs
│ │ └── quick_xml_optimized.rs
│ ├── mod.rs
│ └── schema.xsd
├── element_refs_with_ns
│ ├── bar.xsd
│ ├── baz.xsd
│ ├── biz.xsd
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── element_without_type
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── empty_string
│ ├── example
│ │ ├── complex.xml
│ │ └── simple.xml
│ ├── expected
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ ├── serde_xml_rs_v7.rs
│ │ └── serde_xml_rs_v8.rs
│ ├── mod.rs
│ └── schema.xsd
├── enumeration
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ ├── serde_xml_rs.rs
│ │ └── serde_xml_rs_v7.rs
│ ├── mod.rs
│ └── schema.xsd
├── enumeration_with_annotation
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── extension_base
│ ├── example
│ │ ├── default.xml
│ │ └── serialize.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── extension_base_multilayer
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── extension_base_two_files
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ ├── schema.xsd
│ └── schema2.xsd
├── extension_mixed_content
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── extension_simple_content
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ ├── serde_xml_rs.rs
│ │ └── serde_xml_rs_v7.rs
│ ├── mod.rs
│ └── schema.xsd
├── extra_derive
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── facets
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── globally_allowed_attribute
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── group_refs_with_ns
│ ├── bar.xsd
│ ├── baz.xsd
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── include_references
│ ├── expected
│ │ └── default.rs
│ ├── include.xsd
│ ├── mod.rs
│ └── schema.xsd
├── include_target_namespace
│ ├── expected
│ │ └── default.rs
│ ├── include.xsd
│ ├── mod.rs
│ └── schema.xsd
├── inline_element_names
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── list
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── mixed_choice_with_any
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── mixed_content
│ ├── example
│ │ ├── all.xml
│ │ ├── choice.xml
│ │ └── sequence.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── mixed_content_groups
│ ├── example
│ │ ├── mixed.xml
│ │ └── normal.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── mixed_unexpected_text
│ ├── example
│ │ ├── text0.xml
│ │ ├── text1.xml
│ │ ├── text2.xml
│ │ ├── text3.xml
│ │ ├── text4.xml
│ │ ├── text5.xml
│ │ └── text6.xml
│ ├── expected
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── mod.rs
├── namespaces_qualified
│ ├── bar.xsd
│ ├── baz.xsd
│ ├── example
│ │ ├── global_alt.xml
│ │ ├── global_no_alt.xml
│ │ ├── local_alt.xml
│ │ └── local_no_alt.xml
│ ├── expected
│ │ ├── quick_xml_global_alt.rs
│ │ ├── quick_xml_global_no_alt.rs
│ │ ├── quick_xml_local_alt.rs
│ │ └── quick_xml_local_no_alt.rs
│ ├── foo.xsd
│ └── mod.rs
├── nillable
│ ├── example
│ │ ├── default.xml
│ │ ├── nillable.xml
│ │ └── serialize.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── nillable_dynamic_types
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── default_optimized.rs
│ │ ├── quick_xml.rs
│ │ └── quick_xml_optimized.rs
│ ├── mod.rs
│ └── schema.xsd
├── num_big_int
│ ├── example
│ │ ├── default.xml
│ │ └── serialize.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── numeric_fields
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── ref_to_attribute
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── schema_display_name
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── schema_no_prefix
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── sequence
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── sequence_with_choice
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── sequence_with_choice_nested
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── simple_content
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ ├── serde_xml_rs.rs
│ │ └── serde_xml_rs_v7.rs
│ ├── mod.rs
│ └── schema.xsd
├── simple_content_with_extension
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── simple_type
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── simple_type_emptiable_complex_base
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── simple_type_max_length
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── static_list
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ ├── serde_xml_rs.rs
│ │ └── serde_xml_rs_v7.rs
│ ├── mod.rs
│ └── schema.xsd
├── tuple_with_integer
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── tuple_with_string
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── tuple_with_vec
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── type_loops
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── type_name_clash
│ ├── example
│ │ ├── default.xml
│ │ ├── serde.xml
│ │ └── serialize.xml
│ ├── expected
│ │ └── default.rs
│ ├── mod.rs
│ └── schema.xsd
├── union
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
└── xsd_string
│ ├── example
│ ├── cdata.xml
│ └── default.xml
│ ├── expected
│ ├── default.rs
│ ├── quick_xml.rs
│ ├── serde_quick_xml.rs
│ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── generator
├── box_flags
│ ├── expected
│ │ ├── auto.rs
│ │ ├── enum_elements.rs
│ │ └── struct_elements.rs
│ ├── mod.rs
│ └── schema.xsd
├── generator_flags
│ ├── expected
│ │ ├── any_type_support.rs
│ │ ├── build_in_absolute_paths.rs
│ │ ├── empty.rs
│ │ ├── flatten_content.rs
│ │ ├── mixed_type_support.rs
│ │ ├── nillable_type_support.rs
│ │ └── use_modules.rs
│ ├── mod.rs
│ └── schema.xsd
├── mod.rs
├── quick_xml
│ ├── expected
│ │ ├── deserializer.rs
│ │ └── deserializer_boxed.rs
│ ├── mod.rs
│ └── schema.xsd
├── serde_support
│ ├── expected
│ │ ├── none.rs
│ │ ├── quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
└── typedef_mode
│ ├── expected
│ ├── auto.rs
│ ├── new_type.rs
│ └── typedef.rs
│ ├── mod.rs
│ └── schema.xsd
├── mod.rs
├── optimizer
├── abstract.xsd
├── any_type.xsd
├── complex_choice.xsd
├── complex_flatten.xsd
├── complex_restricted.xsd
├── duplicate.xsd
├── enum_empty.xsd
├── enum_empty_variant.xsd
├── expected0
│ ├── convert_dynamic_to_choice.rs
│ ├── flatten_complex_types.rs
│ ├── flatten_unions.rs
│ ├── merge_choice_cardinalities.rs
│ ├── merge_enum_unions.rs
│ ├── remove_duplicate_union_variants.rs
│ ├── remove_duplicates.rs
│ ├── remove_empty_enum_variants.rs
│ ├── remove_empty_enums.rs
│ ├── remove_empty_unions.rs
│ ├── replace_xs_any_type_with_any_element.rs
│ ├── resolve_typedefs.rs
│ ├── simplify_mixed_types.rs
│ └── use_unrestricted_base_type.rs
├── expected1
│ ├── convert_dynamic_to_choice.rs
│ ├── flatten_complex_types.rs
│ ├── flatten_unions.rs
│ ├── merge_choice_cardinalities.rs
│ ├── merge_enum_unions.rs
│ ├── remove_duplicate_union_variants.rs
│ ├── remove_duplicates.rs
│ ├── remove_empty_enum_variants.rs
│ ├── remove_empty_enums.rs
│ ├── remove_empty_unions.rs
│ ├── replace_xs_any_type_with_any_element.rs
│ ├── resolve_typedefs.rs
│ ├── simplify_mixed_types.rs
│ └── use_unrestricted_base_type.rs
├── mod.rs
├── simplify_mixed_types.xsd
├── union_duplicate.xsd
├── union_empty.xsd
└── union_flatten.xsd
├── renderer
├── mod.rs
└── renderer_flags
│ ├── expected
│ ├── empty.rs
│ └── render_docs.rs
│ ├── mod.rs
│ ├── schema.xsd
│ └── schema_with_docs.xsd
├── schema
├── bmecat_etim_310
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── bmecat_etim_501
│ ├── example
│ │ ├── SampleFile_bmecat_etim_V5_T_NEW_CATALOG_ETIM10.xml
│ │ ├── SampleFile_bmecat_etim_V5_T_NEW_CATALOG_ETIM7.xml
│ │ ├── SampleFile_bmecat_etim_V5_T_NEW_CATALOG_ETIM8.xml
│ │ └── SampleFile_bmecat_etim_V5_T_NEW_CATALOG_ETIM9.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema.xsd
├── factur_x
│ ├── basic.rs
│ ├── basicwl.rs
│ ├── cii_d22b.rs
│ ├── en16931.rs
│ ├── examples
│ │ ├── basic.xml
│ │ ├── basicwl.xml
│ │ ├── en16931.xml
│ │ ├── extended.xml
│ │ ├── minimum.xml
│ │ └── xrechnung.xml
│ ├── expected
│ │ ├── basic_default.rs
│ │ ├── basic_quick_xml.rs
│ │ ├── basicwl_default.rs
│ │ ├── basicwl_quick_xml.rs
│ │ ├── en16931_default.rs
│ │ ├── en16931_quick_xml.rs
│ │ ├── extended_default.rs
│ │ ├── extended_quick_xml.rs
│ │ ├── minimum_default.rs
│ │ └── minimum_quick_xml.rs
│ ├── extended.rs
│ ├── minimum.rs
│ ├── mod.rs
│ └── schema
│ │ ├── 0 1.07.2 MINIMUM
│ │ ├── Factur-X_1.07.2_MINIMUM.xsd
│ │ ├── Factur-X_1.07.2_MINIMUM_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd
│ │ ├── Factur-X_1.07.2_MINIMUM_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd
│ │ └── Factur-X_1.07.2_MINIMUM_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd
│ │ ├── 1 1.07.2 BASICWL
│ │ ├── Factur-X_1.07.2_BASICWL.xsd
│ │ ├── Factur-X_1.07.2_BASICWL_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd
│ │ ├── Factur-X_1.07.2_BASICWL_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd
│ │ └── Factur-X_1.07.2_BASICWL_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd
│ │ ├── 2 1.07.2 BASIC
│ │ ├── Factur-X_1.07.2_BASIC.xsd
│ │ ├── Factur-X_1.07.2_BASIC_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd
│ │ ├── Factur-X_1.07.2_BASIC_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd
│ │ └── Factur-X_1.07.2_BASIC_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd
│ │ ├── 3 1.07.2 EN16931
│ │ ├── Factur-X_1.07.2_EN16931.xsd
│ │ ├── Factur-X_1.07.2_EN16931_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd
│ │ ├── Factur-X_1.07.2_EN16931_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd
│ │ └── Factur-X_1.07.2_EN16931_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd
│ │ ├── 4 1.07.2 EXTENDED
│ │ ├── Factur-X_1.07.2_EXTENDED.xsd
│ │ ├── Factur-X_1.07.2_EXTENDED_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd
│ │ ├── Factur-X_1.07.2_EXTENDED_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd
│ │ └── Factur-X_1.07.2_EXTENDED_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd
│ │ └── 5 CII D22B XSD
│ │ ├── CrossIndustryInvoice_100pD22B.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_EDIFICAS-EU_AccountingAccountType_D11A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_EDIFICAS-EU_AccountingAmountType_D11A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_ISO_ISO3AlphaCurrencyCode_2012-08-31.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_ActionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_AddressType_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_AdjustmentReasonDescriptionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_AllowanceChargeIdentificationCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_AllowanceChargeReasonCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_AutomaticDataCaptureMethodCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_CargoOperationalCategoryCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_CargoTypeCode_1996Rev2Final.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_CommodityIdentificationCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_CommunicationMeansTypeCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_ContactFunctionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DangerousGoodsPackingCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DangerousGoodsRegulationCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DateOnlyFormatCode_D21B.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DeliveryTermsCode_2020.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DeliveryTermsFunctionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DimensionTypeCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DocumentNameCode_Accounting_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DocumentNameCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DocumentStatusCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DutyTaxFeeTypeCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_DutyorTaxorFeeCategoryCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_EventTimeReferenceCodePaymentTermsEvent_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_EventTimeReferenceCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_FreightChargeQuantityUnitBasisCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_FreightChargeTariffCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_GoodsTypeCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_GoodsTypeExtensionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_LocationFunctionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_MeasurementUnitCommonCodeLinear_4.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_MeasurementUnitCommonCodeVolume_4.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_MeasurementUnitCommonCodeWeight_4.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_MessageFunctionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PackageTypeCode_2006.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PackagingMarkingCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PartyRoleCode_ChargePaying_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PartyRoleCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PaymentGuaranteeMeansCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PaymentMeansChannelCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PaymentMeansCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PaymentTermsTypeCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_PriceTypeCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_ReferenceTypeCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_SealConditionCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_SealingPartyRoleCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_StatusCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_StatusDescriptionCode_AccountingDebitCredit_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TimeOnlyFormatCode_D21B.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TimePointFormatCode_D21B.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TransportEquipmentCategoryCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TransportEquipmentFullnessCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TransportMeansTypeCode_2007.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TransportModeCode_2.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TransportMovementStageCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_codelist_standard_UNECE_TransportPaymentArrangementCode_D22A.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_data_standard_QualifiedDataType_100.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_data_standard_ReusableAggregateBusinessInformationEntity_100.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_data_standard_UnqualifiedDataType_100.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_identifierlist_standard_ISO_ISOTwo-letterCountryCode_SecondEdition2006.xsd
│ │ ├── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_identifierlist_standard_UNECE_FreightCostCode_4.xsd
│ │ └── CrossIndustryInvoice_100pD22B_urn_un_unece_uncefact_identifierlist_standard_UNECE_PaymentTermsDescriptionIdentifier_D22A.xsd
├── ideal_merchant_acquirer
│ ├── example
│ │ └── merchant-acquirer.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs_v7.rs
│ ├── mod.rs
│ ├── schema.xsd
│ └── xmldsig-core-schema.xsd
├── mod.rs
├── ofd
│ ├── examples
│ │ ├── Content.xml
│ │ └── OFD.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema
│ │ ├── Annotations.xsd
│ │ ├── Annotion.xsd
│ │ ├── Attachments.xsd
│ │ ├── CustomTags.xsd
│ │ ├── Definition.xsd
│ │ ├── Document.xsd
│ │ ├── Extensions.xsd
│ │ ├── OFD.xsd
│ │ ├── Page.xsd
│ │ ├── Res.xsd
│ │ ├── Signature.xsd
│ │ ├── Signatures.xsd
│ │ └── Version.xsd
├── onix
│ ├── examples
│ │ ├── Onix3sample_refnames.xml
│ │ └── Onix3sample_shorttags.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema
│ │ ├── ONIX_BookProduct_3.1_reference.xsd
│ │ ├── ONIX_BookProduct_3.1_short.xsd
│ │ ├── ONIX_BookProduct_CodeLists.xsd
│ │ └── ONIX_XHTML_Subset.xsd
├── shiporder
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── sitemap
│ ├── example
│ │ └── default.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── xcb
│ ├── example
│ │ ├── render.xml
│ │ └── res.xml
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
├── xccdf_1_2
│ ├── examples
│ │ └── benchmark.xml
│ ├── expected
│ │ ├── default.rs
│ │ └── quick_xml.rs
│ ├── mod.rs
│ └── schema
│ │ ├── XMLSchema.dtd
│ │ ├── cpe-language_2.3.xsd
│ │ ├── cpe-naming_2.3.xsd
│ │ ├── datatypes.dtd
│ │ ├── xccdf_1.2.xsd
│ │ └── xml.xsd
├── xml_catalogs
│ ├── expected
│ │ ├── default.rs
│ │ ├── quick_xml.rs
│ │ ├── serde_quick_xml.rs
│ │ └── serde_xml_rs.rs
│ ├── mod.rs
│ └── schema.xsd
└── xml_schema
│ ├── expected
│ └── quick_xml.rs
│ └── mod.rs
└── utils.rs
/.gitattributes:
--------------------------------------------------------------------------------
1 | xsd-parser/tests/**/*.xml text eol=lf
2 |
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/.github/workflows/main.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 | .vscode
3 | .idea
--------------------------------------------------------------------------------
/Cargo.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/Cargo.lock
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/Cargo.toml
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/README.md
--------------------------------------------------------------------------------
/doc/overview.excalidraw:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/doc/overview.excalidraw
--------------------------------------------------------------------------------
/doc/overview.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/doc/overview.svg
--------------------------------------------------------------------------------
/examples/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/README.md
--------------------------------------------------------------------------------
/examples/read_write/.gitignore:
--------------------------------------------------------------------------------
1 | *~
2 | src/my_schema.rs
3 | /target/
4 |
--------------------------------------------------------------------------------
/examples/read_write/Cargo.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/Cargo.lock
--------------------------------------------------------------------------------
/examples/read_write/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/Cargo.toml
--------------------------------------------------------------------------------
/examples/read_write/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/README.md
--------------------------------------------------------------------------------
/examples/read_write/build.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/build.rs
--------------------------------------------------------------------------------
/examples/read_write/input.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/input.xml
--------------------------------------------------------------------------------
/examples/read_write/my-schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/my-schema.xsd
--------------------------------------------------------------------------------
/examples/read_write/output.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/output.xml
--------------------------------------------------------------------------------
/examples/read_write/src/main.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/examples/read_write/src/main.rs
--------------------------------------------------------------------------------
/rust-toolchain.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/rust-toolchain.toml
--------------------------------------------------------------------------------
/xsd-parser-types/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/Cargo.toml
--------------------------------------------------------------------------------
/xsd-parser-types/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/lib.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/misc/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/misc/mod.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/misc/namespace.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/misc/namespace.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/misc/namespace_prefix.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/misc/namespace_prefix.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/misc/raw_byte_str.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/misc/raw_byte_str.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/deserialize.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/deserialize.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/error.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/error.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/mod.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/reader/error_reader.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/reader/error_reader.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/reader/io_reader.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/reader/io_reader.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/reader/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/reader/mod.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/reader/slice_reader.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/reader/slice_reader.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/quick_xml/serialize.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/quick_xml/serialize.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/traits/as_any.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/traits/as_any.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/traits/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/traits/mod.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/traits/with_namespace.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/traits/with_namespace.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/attributes.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/attributes.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/element.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/element.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/mixed.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/mixed.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/mod.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/namespaces.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/namespaces.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/nillable.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/nillable.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/text.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/text.rs
--------------------------------------------------------------------------------
/xsd-parser-types/src/xml/value.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser-types/src/xml/value.rs
--------------------------------------------------------------------------------
/xsd-parser/Cargo.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/Cargo.toml
--------------------------------------------------------------------------------
/xsd-parser/build.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/build.rs
--------------------------------------------------------------------------------
/xsd-parser/examples/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/examples/README.md
--------------------------------------------------------------------------------
/xsd-parser/examples/custom_names.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/examples/custom_names.rs
--------------------------------------------------------------------------------
/xsd-parser/examples/custom_render_step.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/examples/custom_render_step.rs
--------------------------------------------------------------------------------
/xsd-parser/examples/custom_variants.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/examples/custom_variants.rs
--------------------------------------------------------------------------------
/xsd-parser/examples/simple.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/examples/simple.rs
--------------------------------------------------------------------------------
/xsd-parser/examples/update_schema.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/examples/update_schema.rs
--------------------------------------------------------------------------------
/xsd-parser/schema/XMLSchema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/schema/XMLSchema.xsd
--------------------------------------------------------------------------------
/xsd-parser/schema/xml.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/schema/xml.xsd
--------------------------------------------------------------------------------
/xsd-parser/src/config/generator.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/config/generator.rs
--------------------------------------------------------------------------------
/xsd-parser/src/config/interpreter.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/config/interpreter.rs
--------------------------------------------------------------------------------
/xsd-parser/src/config/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/config/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/config/optimizer.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/config/optimizer.rs
--------------------------------------------------------------------------------
/xsd-parser/src/config/parser.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/config/parser.rs
--------------------------------------------------------------------------------
/xsd-parser/src/config/renderer.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/config/renderer.rs
--------------------------------------------------------------------------------
/xsd-parser/src/lib.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/lib.rs
--------------------------------------------------------------------------------
/xsd-parser/src/macros.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/macros.rs
--------------------------------------------------------------------------------
/xsd-parser/src/meta_types_printer.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/meta_types_printer.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/code/ident_path.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/code/ident_path.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/code/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/code/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/code/module.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/code/module.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/build_in.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/build_in.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/complex.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/complex.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/constrains.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/constrains.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/custom.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/custom.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/dynamic.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/dynamic.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/enumeration.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/enumeration.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/occurs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/occurs.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/path_data.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/path_data.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/reference.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/reference.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/simple.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/simple.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/tag_name.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/tag_name.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/type_.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/type_.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/types.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/data/union.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/data/union.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/ident.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/ident.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/attribute.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/attribute.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/base.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/base.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/complex.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/complex.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/custom.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/custom.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/dynamic.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/dynamic.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/element.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/element.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/enumeration.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/enumeration.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/reference.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/reference.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/simple.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/simple.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/type_.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/type_.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/type_eq.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/type_eq.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/types.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/meta/union.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/meta/union.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/name.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/name.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/naming.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/naming.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/schema/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/schema/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/schema/occurs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/schema/occurs.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/schema/qname.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/schema/qname.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/schema/xs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/schema/xs.rs
--------------------------------------------------------------------------------
/xsd-parser/src/models/schema/xs_generated.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/models/schema/xs_generated.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/context.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/context.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/complex.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/complex.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/constrains.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/constrains.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/dynamic.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/dynamic.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/enumeration.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/enumeration.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/reference.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/reference.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/simple.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/simple.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/type_.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/type_.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/data/union.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/data/union.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/error.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/error.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/meta.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/meta.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/generator/state.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/generator/state.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/interpreter/error.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/interpreter/error.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/interpreter/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/interpreter/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/interpreter/name_builder.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/interpreter/name_builder.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/interpreter/post_process.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/interpreter/post_process.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/interpreter/schema.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/interpreter/schema.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/interpreter/state.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/interpreter/state.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/interpreter/variant_builder.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/interpreter/variant_builder.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/dynamic_to_choice.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/dynamic_to_choice.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/empty_enums.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/empty_enums.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/empty_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/empty_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/flatten_complex_type.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/flatten_complex_type.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/flatten_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/flatten_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/merge_choice_cardinality.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/merge_choice_cardinality.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/merge_enum_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/merge_enum_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/misc/base_map.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/misc/base_map.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/misc/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/misc/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/misc/typedef_map.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/misc/typedef_map.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/remove_duplicates.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/remove_duplicates.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/replace_xs_any_type_with_any_element.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/replace_xs_any_type_with_any_element.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/resolve_typedefs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/resolve_typedefs.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/simplify_mixed_types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/simplify_mixed_types.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/optimizer/unrestricted_base.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/optimizer/unrestricted_base.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/parser/error.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/parser/error.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/parser/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/parser/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/parser/resolver/file_resolver.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/parser/resolver/file_resolver.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/parser/resolver/many_resolver.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/parser/resolver/many_resolver.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/parser/resolver/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/parser/resolver/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/parser/resolver/noop_resolver.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/parser/resolver/noop_resolver.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/parser/resolver/web_resolver.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/parser/resolver/web_resolver.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/context.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/context.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/error.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/error.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/meta.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/meta.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/defaults.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/defaults.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/namespace_const.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/namespace_const.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/prefix_const.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/prefix_const.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/quick_xml/deserialize.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/quick_xml/deserialize.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/quick_xml/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/quick_xml/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/quick_xml/serialize.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/quick_xml/serialize.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/serde/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/serde/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/serde/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/serde/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/serde/serde_xml_rs_v7.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/serde/serde_xml_rs_v7.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/serde/serde_xml_rs_v8.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/serde/serde_xml_rs_v8.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/types.rs
--------------------------------------------------------------------------------
/xsd-parser/src/pipeline/renderer/steps/with_namespace_trait.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/pipeline/renderer/steps/with_namespace_trait.rs
--------------------------------------------------------------------------------
/xsd-parser/src/traits/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/traits/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/src/traits/naming.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/traits/naming.rs
--------------------------------------------------------------------------------
/xsd-parser/src/traits/vec_helper.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/src/traits/vec_helper.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/README.md
--------------------------------------------------------------------------------
/xsd-parser/tests/download:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/download
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/absolute_paths/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/absolute_paths/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/absolute_paths/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/absolute_paths/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/absolute_paths/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/absolute_paths/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/absolute_paths/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/absolute_paths/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/example/serde.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/example/serde.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/example/serialize.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/example/serialize.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/all/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/all/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type_nested/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type_nested/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type_nested/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type_nested/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type_nested/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type_nested/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/any_type_nested/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/any_type_nested/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/build_in/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/build_in/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/build_in/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/build_in/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/build_in/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/build_in/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/build_in/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/build_in/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/build_in/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/build_in/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/build_in/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/build_in/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_flatten_content/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_flatten_content/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_flatten_content/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_flatten_content/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_flatten_content/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_flatten_content/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_flatten_content/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_flatten_content/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_flatten_content/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_flatten_content/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_flatten_content/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_flatten_content/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_with_sequence/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_with_sequence/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_with_sequence/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_with_sequence/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_with_sequence/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_with_sequence/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_with_sequence/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_with_sequence/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_with_sequence/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_with_sequence/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/choice_with_sequence/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/choice_with_sequence/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_empty/example/default.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_empty/expected/default.rs:
--------------------------------------------------------------------------------
1 | #[derive(Debug)]
2 | pub struct SuccessType;
3 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_empty/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_empty/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_empty/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_empty/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_empty/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_empty/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_empty/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_empty/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_empty/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_empty/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_group/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_group/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_group/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_group/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_group/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_group/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_group/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_group/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_group/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_group/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_group/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_group/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_group/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_group/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_repeated_content/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_repeated_content/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_repeated_content/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_repeated_content/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_repeated_content/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_repeated_content/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/complex_type_with_repeated_content/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/complex_type_with_repeated_content/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/custom_type/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/custom_type/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/custom_type/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/custom_type/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/custom_type/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/custom_type/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/custom_type/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/custom_type/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/custom_type/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/custom_type/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/derive/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/derive/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/derive/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/derive/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/derive/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/derive/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/derive/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/derive/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/derive/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/derive/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/derive/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/derive/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/derive/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/derive/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/documentation/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/documentation/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/documentation/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/documentation/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/documentation/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/documentation/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/dynamic_types/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/dynamic_types/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/dynamic_types/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/dynamic_types/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/dynamic_types/expected/default_optimized.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/dynamic_types/expected/default_optimized.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/dynamic_types/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/dynamic_types/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/dynamic_types/expected/quick_xml_optimized.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/dynamic_types/expected/quick_xml_optimized.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/dynamic_types/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/dynamic_types/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/dynamic_types/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/dynamic_types/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/bar.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/bar.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/baz.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/baz.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/biz.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/biz.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_refs_with_ns/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_refs_with_ns/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_without_type/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_without_type/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_without_type/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_without_type/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_without_type/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_without_type/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_without_type/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_without_type/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/element_without_type/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/element_without_type/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/example/complex.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/example/complex.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/example/simple.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/example/simple.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/expected/serde_xml_rs_v7.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/expected/serde_xml_rs_v7.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/expected/serde_xml_rs_v8.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/expected/serde_xml_rs_v8.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/empty_string/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/empty_string/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/expected/serde_xml_rs_v7.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/expected/serde_xml_rs_v7.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration_with_annotation/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration_with_annotation/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration_with_annotation/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration_with_annotation/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/enumeration_with_annotation/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/enumeration_with_annotation/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/example/serialize.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/example/serialize.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_multilayer/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_multilayer/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_multilayer/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_multilayer/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_multilayer/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_multilayer/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_multilayer/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_multilayer/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_multilayer/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_multilayer/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_multilayer/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_multilayer/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_multilayer/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_multilayer/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_base_two_files/schema2.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_base_two_files/schema2.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_mixed_content/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_mixed_content/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_mixed_content/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_mixed_content/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_mixed_content/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_mixed_content/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_mixed_content/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_mixed_content/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_mixed_content/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_mixed_content/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/expected/serde_xml_rs_v7.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/expected/serde_xml_rs_v7.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extension_simple_content/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extension_simple_content/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extra_derive/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extra_derive/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extra_derive/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extra_derive/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/extra_derive/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/extra_derive/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/facets/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/facets/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/facets/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/facets/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/facets/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/facets/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/facets/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/facets/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/facets/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/facets/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/facets/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/facets/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/facets/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/facets/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/globally_allowed_attribute/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/globally_allowed_attribute/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/globally_allowed_attribute/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/globally_allowed_attribute/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/globally_allowed_attribute/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/globally_allowed_attribute/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/globally_allowed_attribute/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/globally_allowed_attribute/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/globally_allowed_attribute/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/globally_allowed_attribute/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/globally_allowed_attribute/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/globally_allowed_attribute/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/group_refs_with_ns/bar.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/group_refs_with_ns/bar.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/group_refs_with_ns/baz.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/group_refs_with_ns/baz.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/group_refs_with_ns/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/group_refs_with_ns/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/group_refs_with_ns/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/group_refs_with_ns/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/group_refs_with_ns/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/group_refs_with_ns/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_references/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_references/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_references/include.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_references/include.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_references/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_references/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_references/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_references/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_target_namespace/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_target_namespace/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_target_namespace/include.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_target_namespace/include.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_target_namespace/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_target_namespace/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/include_target_namespace/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/include_target_namespace/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/inline_element_names/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/inline_element_names/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/inline_element_names/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/inline_element_names/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/inline_element_names/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/inline_element_names/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/list/example/default.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/list/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/list/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/list/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/list/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/list/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/list/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/list/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/list/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/list/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/list/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_choice_with_any/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_choice_with_any/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_choice_with_any/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_choice_with_any/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_choice_with_any/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_choice_with_any/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_choice_with_any/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_choice_with_any/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_choice_with_any/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_choice_with_any/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/example/all.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/example/all.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/example/choice.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/example/choice.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/example/sequence.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/example/sequence.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content_groups/example/mixed.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content_groups/example/mixed.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content_groups/example/normal.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content_groups/example/normal.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content_groups/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content_groups/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content_groups/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content_groups/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content_groups/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content_groups/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_content_groups/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_content_groups/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/example/text0.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/example/text0.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/example/text1.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/example/text1.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/example/text2.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/example/text2.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/example/text3.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/example/text3.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/example/text4.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/example/text4.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/example/text5.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/example/text5.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/example/text6.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/example/text6.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mixed_unexpected_text/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mixed_unexpected_text/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/bar.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/bar.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/baz.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/baz.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/example/global_alt.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/example/global_alt.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/example/global_no_alt.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/example/global_no_alt.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/example/local_alt.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/example/local_alt.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/example/local_no_alt.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/example/local_no_alt.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/expected/quick_xml_global_alt.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/expected/quick_xml_global_alt.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/expected/quick_xml_local_alt.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/expected/quick_xml_local_alt.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/expected/quick_xml_local_no_alt.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/expected/quick_xml_local_no_alt.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/foo.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/foo.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/namespaces_qualified/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/namespaces_qualified/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable/example/nillable.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable/example/nillable.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable/example/serialize.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable/example/serialize.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable_dynamic_types/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable_dynamic_types/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable_dynamic_types/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable_dynamic_types/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable_dynamic_types/expected/default_optimized.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable_dynamic_types/expected/default_optimized.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable_dynamic_types/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable_dynamic_types/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable_dynamic_types/expected/quick_xml_optimized.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable_dynamic_types/expected/quick_xml_optimized.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable_dynamic_types/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable_dynamic_types/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/nillable_dynamic_types/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/nillable_dynamic_types/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/num_big_int/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/num_big_int/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/num_big_int/example/serialize.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/num_big_int/example/serialize.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/num_big_int/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/num_big_int/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/num_big_int/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/num_big_int/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/num_big_int/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/num_big_int/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/num_big_int/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/num_big_int/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/numeric_fields/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/numeric_fields/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/numeric_fields/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/numeric_fields/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/numeric_fields/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/numeric_fields/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/numeric_fields/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/numeric_fields/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/numeric_fields/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/numeric_fields/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/numeric_fields/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/numeric_fields/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/numeric_fields/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/numeric_fields/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/ref_to_attribute/example/default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/ref_to_attribute/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/ref_to_attribute/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/ref_to_attribute/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/ref_to_attribute/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/ref_to_attribute/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/ref_to_attribute/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/ref_to_attribute/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/ref_to_attribute/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/ref_to_attribute/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/ref_to_attribute/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/ref_to_attribute/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/ref_to_attribute/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_display_name/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_display_name/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_display_name/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_display_name/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_display_name/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_display_name/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_display_name/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_display_name/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_display_name/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_display_name/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_display_name/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_display_name/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_display_name/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_display_name/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_no_prefix/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_no_prefix/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_no_prefix/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_no_prefix/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_no_prefix/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_no_prefix/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_no_prefix/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_no_prefix/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_no_prefix/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_no_prefix/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_no_prefix/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_no_prefix/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/schema_no_prefix/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/schema_no_prefix/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice_nested/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice_nested/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice_nested/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice_nested/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice_nested/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice_nested/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice_nested/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice_nested/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice_nested/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice_nested/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/sequence_with_choice_nested/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/sequence_with_choice_nested/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/expected/serde_xml_rs_v7.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/expected/serde_xml_rs_v7.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content_with_extension/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content_with_extension/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content_with_extension/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content_with_extension/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_content_with_extension/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_content_with_extension/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type/expected/default.rs:
--------------------------------------------------------------------------------
1 | pub type Foo = String;
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
1 | pub type Foo = String;
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
1 | pub type Foo = String;
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_emptiable_complex_base/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type_emptiable_complex_base/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_emptiable_complex_base/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type_emptiable_complex_base/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_emptiable_complex_base/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type_emptiable_complex_base/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_max_length/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type_max_length/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_max_length/expected/default.rs:
--------------------------------------------------------------------------------
1 | pub type Name = String;
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_max_length/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type_max_length/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_max_length/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
1 | pub type Name = String;
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_max_length/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
1 | pub type Name = String;
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_max_length/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type_max_length/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/simple_type_max_length/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/simple_type_max_length/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/expected/serde_xml_rs_v7.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/expected/serde_xml_rs_v7.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/static_list/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/static_list/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_integer/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_integer/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_integer/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_integer/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_integer/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_integer/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_integer/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_integer/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_integer/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_integer/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_integer/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_integer/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_integer/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_integer/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_string/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_string/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_string/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_string/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_string/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_string/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_string/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_string/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_string/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_string/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_string/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_string/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_string/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_string/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_vec/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_vec/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_vec/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_vec/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_vec/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_vec/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_vec/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_vec/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_vec/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_vec/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_vec/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_vec/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/tuple_with_vec/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/tuple_with_vec/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_loops/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_loops/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_loops/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_loops/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_loops/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_loops/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_name_clash/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_name_clash/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_name_clash/example/serde.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_name_clash/example/serde.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_name_clash/example/serialize.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_name_clash/example/serialize.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_name_clash/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_name_clash/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_name_clash/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_name_clash/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/type_name_clash/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/type_name_clash/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/union/example/default.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/union/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/union/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/union/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/union/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/union/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/union/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/union/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/union/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/union/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/union/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/union/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/union/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/example/cdata.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/example/cdata.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/feature/xsd_string/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/feature/xsd_string/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/box_flags/expected/auto.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/box_flags/expected/auto.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/box_flags/expected/enum_elements.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/box_flags/expected/enum_elements.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/box_flags/expected/struct_elements.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/box_flags/expected/struct_elements.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/box_flags/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/box_flags/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/box_flags/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/box_flags/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/expected/any_type_support.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/expected/any_type_support.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/expected/build_in_absolute_paths.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/expected/build_in_absolute_paths.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/expected/empty.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/expected/empty.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/expected/flatten_content.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/expected/flatten_content.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/expected/mixed_type_support.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/expected/mixed_type_support.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/expected/nillable_type_support.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/expected/nillable_type_support.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/expected/use_modules.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/expected/use_modules.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/generator_flags/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/generator_flags/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/quick_xml/expected/deserializer.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/quick_xml/expected/deserializer.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/quick_xml/expected/deserializer_boxed.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/quick_xml/expected/deserializer_boxed.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/quick_xml/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/quick_xml/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/quick_xml/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/quick_xml/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/serde_support/expected/none.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/serde_support/expected/none.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/serde_support/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/serde_support/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/serde_support/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/serde_support/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/serde_support/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/serde_support/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/serde_support/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/serde_support/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/typedef_mode/expected/auto.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/typedef_mode/expected/auto.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/typedef_mode/expected/new_type.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/typedef_mode/expected/new_type.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/typedef_mode/expected/typedef.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/typedef_mode/expected/typedef.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/typedef_mode/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/typedef_mode/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/generator/typedef_mode/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/generator/typedef_mode/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/abstract.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/abstract.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/any_type.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/any_type.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/complex_choice.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/complex_choice.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/complex_flatten.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/complex_flatten.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/complex_restricted.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/complex_restricted.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/duplicate.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/duplicate.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/enum_empty.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/enum_empty.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/enum_empty_variant.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/enum_empty_variant.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/convert_dynamic_to_choice.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/convert_dynamic_to_choice.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/flatten_complex_types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/flatten_complex_types.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/flatten_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/flatten_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/merge_choice_cardinalities.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/merge_choice_cardinalities.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/merge_enum_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/merge_enum_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/remove_duplicate_union_variants.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/remove_duplicate_union_variants.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/remove_duplicates.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/remove_duplicates.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/remove_empty_enum_variants.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/remove_empty_enum_variants.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/remove_empty_enums.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/remove_empty_enums.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/remove_empty_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/remove_empty_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/replace_xs_any_type_with_any_element.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/replace_xs_any_type_with_any_element.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/resolve_typedefs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/resolve_typedefs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/simplify_mixed_types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/simplify_mixed_types.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected0/use_unrestricted_base_type.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected0/use_unrestricted_base_type.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/convert_dynamic_to_choice.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/convert_dynamic_to_choice.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/flatten_complex_types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/flatten_complex_types.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/flatten_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/flatten_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/merge_choice_cardinalities.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/merge_choice_cardinalities.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/merge_enum_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/merge_enum_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/remove_duplicate_union_variants.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/remove_duplicate_union_variants.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/remove_duplicates.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/remove_duplicates.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/remove_empty_enum_variants.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/remove_empty_enum_variants.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/remove_empty_enums.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/remove_empty_enums.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/remove_empty_unions.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/remove_empty_unions.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/replace_xs_any_type_with_any_element.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/replace_xs_any_type_with_any_element.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/resolve_typedefs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/resolve_typedefs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/simplify_mixed_types.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/simplify_mixed_types.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/expected1/use_unrestricted_base_type.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/expected1/use_unrestricted_base_type.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/simplify_mixed_types.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/simplify_mixed_types.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/union_duplicate.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/union_duplicate.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/union_empty.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/union_empty.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/optimizer/union_flatten.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/optimizer/union_flatten.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/renderer/mod.rs:
--------------------------------------------------------------------------------
1 | mod renderer_flags;
2 |
--------------------------------------------------------------------------------
/xsd-parser/tests/renderer/renderer_flags/expected/empty.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/renderer/renderer_flags/expected/empty.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/renderer/renderer_flags/expected/render_docs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/renderer/renderer_flags/expected/render_docs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/renderer/renderer_flags/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/renderer/renderer_flags/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/renderer/renderer_flags/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/renderer/renderer_flags/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/renderer/renderer_flags/schema_with_docs.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/renderer/renderer_flags/schema_with_docs.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_310/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_310/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_310/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_310/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_310/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_310/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_310/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_310/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_501/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_501/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_501/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_501/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_501/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_501/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/bmecat_etim_501/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/bmecat_etim_501/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/basic.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/basic.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/basicwl.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/basicwl.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/cii_d22b.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/cii_d22b.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/en16931.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/en16931.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/examples/basic.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/examples/basic.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/examples/basicwl.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/examples/basicwl.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/examples/en16931.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/examples/en16931.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/examples/extended.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/examples/extended.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/examples/minimum.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/examples/minimum.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/examples/xrechnung.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/examples/xrechnung.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/basic_default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/basic_default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/basic_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/basic_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/basicwl_default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/basicwl_default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/basicwl_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/basicwl_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/en16931_default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/en16931_default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/en16931_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/en16931_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/extended_default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/extended_default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/extended_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/extended_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/minimum_default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/minimum_default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/expected/minimum_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/expected/minimum_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/extended.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/extended.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/minimum.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/minimum.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/factur_x/schema/2 1.07.2 BASIC/Factur-X_1.07.2_BASIC.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/factur_x/schema/2 1.07.2 BASIC/Factur-X_1.07.2_BASIC.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/example/merchant-acquirer.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/example/merchant-acquirer.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/serde_xml_rs_v7.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/expected/serde_xml_rs_v7.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ideal_merchant_acquirer/xmldsig-core-schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ideal_merchant_acquirer/xmldsig-core-schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/examples/Content.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/examples/Content.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/examples/OFD.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/examples/OFD.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Annotations.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Annotations.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Annotion.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Annotion.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Attachments.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Attachments.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/CustomTags.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/CustomTags.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Definition.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Definition.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Document.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Document.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Extensions.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Extensions.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/OFD.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/OFD.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Page.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Page.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Res.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Res.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Signature.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Signature.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Signatures.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Signatures.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/ofd/schema/Version.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/ofd/schema/Version.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/examples/Onix3sample_refnames.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/examples/Onix3sample_refnames.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/examples/Onix3sample_shorttags.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/examples/Onix3sample_shorttags.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/schema/ONIX_BookProduct_3.1_reference.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/schema/ONIX_BookProduct_3.1_reference.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/schema/ONIX_BookProduct_3.1_short.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/schema/ONIX_BookProduct_3.1_short.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/schema/ONIX_BookProduct_CodeLists.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/schema/ONIX_BookProduct_CodeLists.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/onix/schema/ONIX_XHTML_Subset.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/onix/schema/ONIX_XHTML_Subset.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/shiporder/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/shiporder/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/shiporder/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/shiporder/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/shiporder/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/shiporder/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/shiporder/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/shiporder/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/shiporder/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/shiporder/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/shiporder/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/shiporder/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/shiporder/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/shiporder/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/sitemap/example/default.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/sitemap/example/default.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/sitemap/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/sitemap/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/sitemap/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/sitemap/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/sitemap/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/sitemap/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/sitemap/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/sitemap/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/sitemap/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/sitemap/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/sitemap/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/sitemap/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/example/render.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/example/render.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/example/res.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/example/res.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xcb/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xcb/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/examples/benchmark.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/examples/benchmark.xml
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/schema/XMLSchema.dtd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/schema/XMLSchema.dtd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/schema/cpe-language_2.3.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/schema/cpe-language_2.3.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/schema/cpe-naming_2.3.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/schema/cpe-naming_2.3.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/schema/datatypes.dtd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/schema/datatypes.dtd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/schema/xccdf_1.2.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/schema/xccdf_1.2.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xccdf_1_2/schema/xml.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xccdf_1_2/schema/xml.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_catalogs/expected/default.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_catalogs/expected/default.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_catalogs/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_catalogs/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_catalogs/expected/serde_quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_catalogs/expected/serde_quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_catalogs/expected/serde_xml_rs.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_catalogs/expected/serde_xml_rs.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_catalogs/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_catalogs/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_catalogs/schema.xsd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_catalogs/schema.xsd
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_schema/expected/quick_xml.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_schema/expected/quick_xml.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/schema/xml_schema/mod.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/schema/xml_schema/mod.rs
--------------------------------------------------------------------------------
/xsd-parser/tests/utils.rs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Bergmann89/xsd-parser/HEAD/xsd-parser/tests/utils.rs
--------------------------------------------------------------------------------