From 440060bb7741b2c46a8f125e133194c4842c7a95 Mon Sep 17 00:00:00 2001 From: schillic Date: Fri, 1 Mar 2024 11:27:20 +0100 Subject: [PATCH] remove unused Reexport package --- Project.toml | 2 -- src/SpaceExParser.jl | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index d0ec576..e5e384a 100644 --- a/Project.toml +++ b/Project.toml @@ -8,7 +8,6 @@ EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615" HybridSystems = "2207ec0c-686c-5054-b4d2-543502888820" LazySets = "b4f0291d-fe17-52bc-9479-3d1a343d9043" MathematicalSystems = "d14a8603-c872-5ed3-9ece-53e0e82e39da" -Reexport = "189a3867-3050-52da-a836-e630ba90ab69" SymEngine = "123dc426-2d89-5057-bbad-38513e3affd8" [compat] @@ -17,6 +16,5 @@ EzXML = "1" HybridSystems = "0.4" LazySets = "1, 2" MathematicalSystems = "0.11, 0.12, 0.13" -Reexport = "0.2, 1" SymEngine = "0.7, 0.8, 0.9, 0.10, 0.11" julia = "1.2" diff --git a/src/SpaceExParser.jl b/src/SpaceExParser.jl index 850db6d..dbec620 100644 --- a/src/SpaceExParser.jl +++ b/src/SpaceExParser.jl @@ -7,7 +7,7 @@ Load dependencies =========================================# using DataStructures: OrderedDict -using EzXML, HybridSystems, LazySets, MathematicalSystems, Reexport, SymEngine +using EzXML, HybridSystems, LazySets, MathematicalSystems, SymEngine #========================= Input/Output functions