Skip to content

Commit 39470d1

Browse files
authored
Merge pull request #20 from ararslan/aa/jll
Use Zstd_jll to provide zstd, update to 1.4.4
2 parents e56b7bc + b2ef351 commit 39470d1

File tree

5 files changed

+7
-78
lines changed

5 files changed

+7
-78
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 1.0
8-
- 1.1
7+
- 1.3
98
- nightly
109
matrix:
1110
allow_failures:

Project.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@ name = "CodecZstd"
22
uuid = "6b39b394-51ab-5f42-8807-6242bab2b4c2"
33
license = "MIT"
44
authors = ["Kenta Sato <bicycle1885@gmail.com>"]
5-
version = "0.6.1"
5+
version = "0.7.0"
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"
15-
julia = "1"
13+
Zstd_jll = "1.4"
14+
julia = "1.3"
1615

1716
[extras]
1817
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
environment:
22
matrix:
3-
- julia_version: 1.0
4-
- julia_version: 1.1
3+
- julia_version: 1.3
54
- julia_version: nightly
65

76
platform:

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)