Skip to content

Commit 8739763

Browse files
committed
Use Zstd_jll to provide zstd, update to 1.4.4
1 parent e56b7bc commit 8739763

File tree

3 files changed

+3
-72
lines changed

3 files changed

+3
-72
lines changed

Project.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ authors = ["Kenta Sato <bicycle1885@gmail.com>"]
55
version = "0.6.1"
66

77
[deps]
8-
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
9-
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
108
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
9+
Zstd_jll = "3161d3a3-bdf6-5164-811a-617609db77b4"
1110

1211
[compat]
13-
BinaryProvider = "0.5"
1412
TranscodingStreams = "0.9"
13+
Zstd_jll = "1.4"
1514
julia = "1"
1615

1716
[extras]

deps/build.jl

Lines changed: 0 additions & 62 deletions
This file was deleted.

src/CodecZstd.jl

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,7 @@ import TranscodingStreams:
1515
finalize,
1616
splitkwargs
1717

18-
using Libdl
19-
const libzpath = joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")
20-
if !isfile(libzpath)
21-
error("CodecZstd.jl is not installed properly, run Pkg.build(\"CodecZstd\") and restart Julia.")
22-
end
23-
include(libzpath)
24-
check_deps()
18+
using Zstd_jll
2519

2620
include("libzstd.jl")
2721
include("compression.jl")

0 commit comments

Comments
 (0)