# \[ANN\] Numerics.jl – The Extended Standard Library

**URL:** https://discourse.julialang.org/t/ann-numerics-jl-the-extended-standard-library/40694
**Category:** Package Announcements
**Created:** [June 3, 2020, 8:36pm UTC](https://discourse.julialang.org/t/ann-numerics-jl-the-extended-standard-library/40694 "2020-06-03T20:36:55Z")
**Posts on this page:** 1
**Showing post:** 45

<div class="post-metadata">

### Author: ![heliosdrm](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/heliosdrm/32/3851_2.png) [@heliosdrm](https://discourse.julialang.org/u/heliosdrm)
#### Post date: [June 8, 2020, 10:20am UTC](https://discourse.julialang.org/t/ann-numerics-jl-the-extended-standard-library/40694/45 "2020-06-08T10:20:39Z")

</div>

That might be achieved with something like this… (using [this TOML parser](https://github.com/JuliaLang/TOML.jl) for simplicity, but it could be easily written without any external dependency).

```julia
using TOML
deps = TOML.parsefile(Base.active_project())["deps"]
for package in keys(deps)
    @eval Main using $(Symbol(package))
end

```

---

_[View the full topic](https://discourse.julialang.org/t/ann-numerics-jl-the-extended-standard-library/40694)._
