-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic docs for (Lazy)Artifacts stdlibs (#39073)
(cherry picked from commit debf26e)
- Loading branch information
1 parent
a5d3675
commit bfae07c
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Artifacts | ||
|
||
```@meta | ||
DocTestSetup = :(using Artifacts) | ||
``` | ||
|
||
Starting with Julia 1.6, the artifacts support has moved from `Pkg.jl` to Julia itself. | ||
Until proper documentation can be added here, you can learn more about artifacts in the | ||
`Pkg.jl` manual at <https://julialang.github.io/Pkg.jl/v1/artifacts/>. | ||
|
||
!!! compat "Julia 1.6" | ||
Julia's artifacts API requires at least Julia 1.6. In Julia | ||
versions 1.3 to 1.5, you can use `Pkg.Artifacts` instead. | ||
|
||
|
||
```@docs | ||
Artifacts.artifact_meta | ||
Artifacts.artifact_hash | ||
Artifacts.find_artifacts_toml | ||
Artifacts.@artifact_str | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Lazy Artifacts | ||
|
||
```@meta | ||
DocTestSetup = :(using LazyArtifacts) | ||
``` | ||
|
||
In order for a package to download artifacts lazily, `LazyArtifacts` must be | ||
explicitly listed as a dependency of that package. | ||
|
||
For further information on artifacts, see [Artifacts](@ref). |