Skip to content

Commit 46b552a

Browse files
committed
Preparing for 0.2.0 release
1 parent fe4d2d2 commit 46b552a

File tree

5 files changed

+31
-20
lines changed

5 files changed

+31
-20
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ Cargo.lock
1313
.afl*
1414

1515
__pycache__
16+
17+
.pytest_cache

Cargo.toml

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
[package]
22
name = "archivelib"
33
description = "An implementaton of the Greenleaf ArchiveLib compression/decompression algorithm"
4-
version = "0.1.2"
4+
version = "0.2.0"
55
authors = ["Opal Symes <[email protected]>"]
66
edition = "2018"
77

88
homepage = "https://github.com/software-opal/archivelib-rs"
99
license = "GPL-2.0-only"
1010

11+
exclude = [
12+
"fuzz",
13+
"archivelib-sys-*",
14+
"e2e_test",
15+
"test_data",
16+
"cli",
17+
]
18+
1119
[[bin]]
1220
name = "unalzip"
1321
path = "src/executables/decompress.rs"
@@ -22,24 +30,24 @@ sys = ['archivelib-sys']
2230
default=["new_impl"]
2331

2432
[dependencies]
25-
failure = "0.1.3"
26-
failure_derive = "0.1.3"
33+
failure = "0.1.5"
34+
failure_derive = "0.1.5"
2735

28-
# archivelib-sys = { version = "0.1.0", path = "archivelib-sys-orig", optional=true}
29-
archivelib-sys = { version = "0.1.0", path = "archivelib-sys-refactored", optional=true}
36+
archivelib-sys = { version = "0.2.0", path = "archivelib-sys-orig", optional=true}
37+
# archivelib-sys = { version = "0.2.0", path = "archivelib-sys-refactored", optional=true}
3038

3139
[dev-dependencies]
32-
lazy_static = "1.3.0"
33-
rand = "0.7.0"
40+
lazy_static = "1.4.0"
41+
rand = "0.7.2"
3442
# We use threads for the 'hangs' tests to prevent the tests runnin forever
3543
humthreads = '0.1.4'
36-
# archivelib-sys = { version = "0.1.0", path = "archivelib-sys-orig" }
37-
archivelib-sys = { version = "0.1.0", path = "archivelib-sys-refactored" }
44+
archivelib-sys = { version = "0.2.0", path = "archivelib-sys-orig" }
45+
# archivelib-sys = { version = "0.2.0", path = "archivelib-sys-refactored" }
3846

3947
[workspace]
4048
members = [
41-
# "archivelib-sys-orig",
42-
"archivelib-sys-refactored",
49+
"archivelib-sys-orig",
50+
# "archivelib-sys-refactored",
4351
"cli",
4452
# "fuzz",
4553
]

archivelib-sys-orig/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "archivelib-sys"
33
description = "An implementaton(in C++) of the Greenleaf ArchiveLib compression/decompression algorithm"
44
build = "build.rs"
5-
version = "0.1.1"
6-
authors = ["Opal Symes <[email protected]>"]
5+
version = "0.2.0"
6+
authors = ["Opal Symes <[email protected]>"]
77
edition = "2018"
88

99
homepage = "https://github.com/software-opal/archivelib-rs"
@@ -20,8 +20,8 @@ name = "alszip"
2020
path = "src/executables/compress.rs"
2121

2222
[build-dependencies]
23-
cc = { version = "1.0.40", features = ["parallel"] }
23+
cc = { version = "1.0.45", features = ["parallel"] }
2424
bindgen = "0.51.0"
2525

2626
[dev-dependencies]
27-
rand = "0.7.0"
27+
rand = "0.7.2"

archivelib-sys-refactored/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
2-
# name = "archivelib-sys_a"
32
name = "archivelib-sys"
3+
description = "An implementaton(in C++) of the Greenleaf ArchiveLib compression/decompression algorithm"
44
build = "build.rs"
5-
version = "0.1.0"
6-
authors = ["Opal Symes <[email protected]>"]
5+
version = "0.2.0"
6+
authors = ["Opal Symes <[email protected]>"]
77
edition = "2018"
88

99
homepage = "https://github.com/software-opal/archivelib-rs"
@@ -24,4 +24,4 @@ cc = { version = "1.0.40", features = ["parallel"] }
2424
bindgen = "0.51.0"
2525

2626
[dev-dependencies]
27-
rand = "0.7.0"
27+
rand = "0.7.2"

cli/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "cli"
33
version = "0.1.0"
44
authors = ["opal"]
55
edition = "2018"
6+
publish = false
67

78
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
89

@@ -17,7 +18,7 @@ path = "src/executables/fuzz_hongg.rs"
1718
required-features = ["fuzz-hongg"]
1819

1920
[dependencies]
20-
archivelib = { version = "0.1.2", path = "../" , features=["new_impl", "sys"]}
21+
archivelib = { path = "../" , features=["new_impl", "sys"]}
2122

2223
afl = { version = "*", optional = true }
2324
honggfuzz = { version = "*", optional = true }

0 commit comments

Comments
 (0)