diff --git a/src/erg_compiler/Cargo.toml b/src/erg_compiler/Cargo.toml index 8839bbe60..2b090cab6 100644 --- a/src/erg_compiler/Cargo.toml +++ b/src/erg_compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erg_compiler" -version = "0.1.0" +version = "0.1.1" description = "Centimetre: the Erg compiler" authors = ["Shunsuke Shibayama "] license = "MIT OR Apache-2.0" @@ -15,8 +15,8 @@ debug = [ "erg_common/debug", "erg_parser/debug" ] japanese = [ "erg_common/japanese", "erg_parser/japanese" ] [dependencies] -erg_common = { version = "0.1.1", path = "../erg_common" } -erg_parser = { version = "0.1.0", path = "erg_parser" } +erg_common = { version = "0.1.3", path = "../erg_common" } +erg_parser = { version = "0.1.1", path = "erg_parser" } [lib] path = "lib.rs" diff --git a/src/erg_compiler/erg_parser/Cargo.toml b/src/erg_compiler/erg_parser/Cargo.toml index 73f82b822..7eac37a3f 100644 --- a/src/erg_compiler/erg_parser/Cargo.toml +++ b/src/erg_compiler/erg_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "erg_parser" -version = "0.1.0" +version = "0.1.1" description = "The Erg parser" authors = ["mtshiba "] license = "MIT OR Apache-2.0" @@ -14,7 +14,7 @@ debug = [ "erg_common/debug" ] japanese = [ "erg_common/japanese" ] [dependencies] -erg_common = { version = "0.1.1", path = "../../erg_common" } +erg_common = { version = "0.1.3", path = "../../erg_common" } [lib] path = "lib.rs"