diff --git a/Project.toml b/Project.toml index d543d15..5d12a2d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,11 +1,10 @@ name = "MechGluecode" uuid = "3017d99d-ab52-4519-99a2-fa9ddc4637fe" authors = ["hustf and contributors"] -version = "0.1.51" +version = "0.1.52" [deps] DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e" -DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" MechGlueDiffEqBase = "2532746b-52b5-4539-9431-8bb183ab067f" MechGlueInterpolations = "a2cecc3b-2043-4d36-9615-d8139ca22695" MechGlueModelingToolkit = "83168081-0482-427f-a8e5-e3977330cfc7" @@ -23,6 +22,7 @@ Unitfu = "5ee08b94-2369-4f4a-b8c7-99333ba35fb0" julia = "1" [extras] +DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" SnoopCompile = "aa65fe97-06da-5843-b5b1-d5d13cad87d2" SnoopCompileCore = "e2b509da-e806-4183-be48-004708413034" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/src/MechGluecode.jl b/src/MechGluecode.jl index b6cdaac..43819f0 100644 --- a/src/MechGluecode.jl +++ b/src/MechGluecode.jl @@ -9,28 +9,21 @@ function __init__() @eval using MechGluePlots end @require Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" begin - #@info "Interpolations => using MechGlueInterpolations" - #@eval using MechGlueInterpolations + @info "Interpolations => using MechGlueInterpolations" + @eval using MechGlueInterpolations end - @require ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78" begin #@info "ModelingToolkit => using MechGlueModelingToolkit" #@eval using MechGlueModelingToolkit end - @require RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd" begin - @info "RecursiveArrayTools => using MechGlueRecursiveArrayTools" + # @info "RecursiveArrayTools => using MechGlueRecursiveArrayTools" # @eval using MechGlueDiffEqBase # @info "RecursiveArrayTools => using MechGlueRecursiveArrayTools" # @eval using MechGlueRecursiveArrayTools end - @require DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa" begin - @info "DifferentialEquations => using MechGlueDiffEqBase" - # @eval import MechanicalUnits: Unitfu, @import_expand - # @eval import Unitfu: AbstractQuantity - # @eval import DifferentialEquations - # @eval import DifferentialEquations: DiffEqBase - # @eval import SciMLBase + @require DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e" begin + @info "DiffEqBase => using MechGlueDiffEqBase" @eval using MechGlueDiffEqBase end end