Skip to content

Commit

Permalink
Xml parser (#147)
Browse files Browse the repository at this point in the history
* Use Node instead of LazyNode

* Use XML 0.3
  • Loading branch information
henry2004y authored Jul 17, 2023
1 parent ba21482 commit 67948f2
Show file tree
Hide file tree
Showing 5 changed files with 174 additions and 141 deletions.
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@ version = "0.10.2"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
LazyGrids = "7031d0ef-c40d-4431-b2f8-61a8d2f650db"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
Parsers = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
WriteVTK = "64499a7a-5c06-52f2-abe2-ccb03c286192"
XML = "72c71f33-b9b6-44de-8c94-c961784809e2"

[compat]
EzXML = "1.1"
LaTeXStrings = "1.2"
LazyGrids = "0.4, 0.5"
Parsers = "2.4"
RecipesBase = "1.1"
PrecompileTools = "1.0"
RecipesBase = "1.1"
StaticArrays = "1.2"
WriteVTK = "1.9"
XML = "0.3"
julia = "1.7"

[extras]
Expand Down
3 changes: 2 additions & 1 deletion src/Vlasiator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ using StaticArrays: SVector, @SVector, SMatrix, @SMatrix
using Printf: @sprintf
using LinearAlgebra: ×, dot, , norm, normalize, normalize!
using Statistics: mean
using EzXML
using XML: Node, LazyNode, Element, Document, children, tag, attributes, value
import XML
using Mmap: mmap
using WriteVTK
using LazyGrids: ndgrid
Expand Down
Loading

0 comments on commit 67948f2

Please sign in to comment.