From b30f943ce2240f918d188f19e6ce1f467683d2cc Mon Sep 17 00:00:00 2001 From: Kristoffer Date: Mon, 3 Oct 2022 22:23:51 +0200 Subject: [PATCH] add some basic docs for weak deps --- docs/make.jl | 1 + docs/src/weakdeps.md | 77 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 docs/src/weakdeps.md diff --git a/docs/make.jl b/docs/make.jl index d65c17702b..ff8f46c154 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -35,6 +35,7 @@ makedocs( "managing-packages.md", "environments.md", "creating-packages.md", + "weakdeps.md", "compatibility.md", "registries.md", "artifacts.md", diff --git a/docs/src/weakdeps.md b/docs/src/weakdeps.md new file mode 100644 index 0000000000..b306981f43 --- /dev/null +++ b/docs/src/weakdeps.md @@ -0,0 +1,77 @@ +# Weak dependencies + +It is sometimes desirable to be able to extend some functionality of a package without having to +unconditionally take on the cost (in terms of e.g. load time) of adding an extra dependency. +A *weak* dependency is a package that is only available to load if some other package in the +current environment have that package as a normal (or strong) dependency. + +Weak dependencies are listed in a `Project.toml` file under the `[weakdeps]` section which can be compared to a +(strong) dependency which is under the `[deps]` section. +Compatibility on weak dependencies are specified like a normal dependeny unde the ยด[compat]` section. + +A useful application of weak dependencies could be for a plotting package that should be able to plot +objects from different Julia packages. Adding all those different Julia packages as dependencies +could be expensive. Instead, these packages are added as weak dependencies so that they are available only +if there is a chance that someone might call the function with such a type. + +Below is an example of how the code can be structured for a use-case as outlined above. + +`Project.toml`: +```toml +name = "Plotting" +version = "0.1.0" +uuid = "..." + +[deps] # strong dependencies +Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" + +[weakdeps] +Contour = "d38c429a-6771-53c6-b99e-75d170b6e991" + +[compat] # compat can also be given on weak dependencies +Colors = "0.12.8" +Contour = "0.6.2" +``` + +`src/Plotting.jl`: +```julia +module Plotting + +using Colors + +if Base.@hasdep Contour + using Contour + function plot(c::Contour.ContourCollection + ... + end +end + +end # module +``` + +## Compatibility with older Julia versions. + +It is possible to have a dependency be a weak version in Julia versions that support it and be a strong dependency in earlier +Julia versions. This is done by having the dependency as *both* a strong and weak dependency. Older Julia version will ignore +the specificaton of the depenency as weak while new Julia versions will tag it as a weak dependency. + +The above code would then look like: + +```julia +module Plotting + +using Colors + +if !isdefined(Base, :hasdep) || Base.hasdep(@__MODULE__, :Contour) + using Contour + function plot(c::Contour.ContourCollection + ... + end +end + +end # module +``` + +where the "conditional code" is executed unconditionally on old Julia versions and based on the presence of the weak +dependency on new Julia version. Here the functional form of `@hasdep` was used which requires a module as the first +argument.