File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ # Artifacts
2+
3+ ``` @meta
4+ DocTestSetup = :(using Artifacts)
5+ ```
6+
7+ Starting with Julia 1.6, the artifacts support has moved from ` Pkg.jl ` to Julia itself.
8+ Until proper documentation can be added here, you can learn more about artifacts in the
9+ ` Pkg.jl ` manual at < https://julialang.github.io/Pkg.jl/v1/artifacts/ > .
10+
11+ !!! compat "Julia 1.6"
12+ Julia's artifacts API requires at least Julia 1.6. In Julia
13+ versions 1.3 to 1.5, you can use ` Pkg.Artifacts ` instead.
14+
15+
16+ ``` @docs
17+ Artifacts.artifact_meta
18+ Artifacts.artifact_hash
19+ Artifacts.find_artifacts_toml
20+ Artifacts.@artifact_str
21+ ```
Original file line number Diff line number Diff line change @@ -557,7 +557,7 @@ returning that and the `joinpath()` of the remaining arguments. This normalizes
557557separators to the native path separator for the current platform. Examples:
558558
559559# Examples
560- ```jldoctest
560+ ```jldoctest; setup = :(using Artifacts: split_artifact_slash)
561561julia> split_artifact_slash("Foo")
562562("Foo", "")
563563
Original file line number Diff line number Diff line change 1+ # Lazy Artifacts
2+
3+ ``` @meta
4+ DocTestSetup = :(using LazyArtifacts)
5+ ```
6+
7+ In order for a package to download artifacts lazily, ` LazyArtifacts ` must be
8+ explicitly listed as a dependency of that package.
9+
10+ For further information on artifacts, see [ Artifacts] ( @ref ) .
You can’t perform that action at this time.
0 commit comments