diff --git a/Cargo.lock b/Cargo.lock index 23b3a73..796be64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -120,7 +120,7 @@ dependencies = [ [[package]] name = "hwp" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aes", "byteorder", @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "hwp_macro" -version = "0.1.0" +version = "0.2.0" [[package]] name = "hwp_python" diff --git a/crates/hwp/Cargo.toml b/crates/hwp/Cargo.toml index 09fc997..6f7dfc8 100644 --- a/crates/hwp/Cargo.toml +++ b/crates/hwp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hwp" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0" description = "낮은 수준의 hwp 파서" @@ -10,7 +10,7 @@ repository = "https://github.com/hahnlee/hwp-rs" aes = "0.8" byteorder = "1" cfb = "0.7" -hwp_macro = { path = "../macro", version = "0.1.0" } +hwp_macro = { path = "../macro", version = "0.2.0" } flate2 = "1.0" num = "0.4" num-traits = "0.2" diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 8248876..02916f1 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hwp_macro" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "Apache-2.0" description = "make_4chid를 위한 매크로" diff --git a/crates/python/Cargo.toml b/crates/python/Cargo.toml index 4dc55b9..44c7b61 100644 --- a/crates/python/Cargo.toml +++ b/crates/python/Cargo.toml @@ -9,5 +9,5 @@ name = "libhwp" crate-type = ["cdylib"] [dependencies] -hwp = { path = "../hwp", version = "0.1.0" } +hwp = { path = "../hwp", version = "0.2.0" } pyo3 = { version = "0.17", features = ["extension-module"] }