Update Cargo.toml

This commit is contained in:
Shunsuke Shibayama 2022-12-27 02:03:32 +09:00
parent 16b50347d4
commit 6a94a09679
3 changed files with 16 additions and 11 deletions

View file

@ -1,14 +1,14 @@
[package]
name = "erg"
version = "0.6.0"
description = "The Erg programming language"
authors = ["erg-lang team <moderation.erglang@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/erg-lang/erg"
documentation = "https://docs.rs/erg"
homepage = "https://erg-lang.org/"
keywords = ["erg", "programming-language"]
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
[workspace]
members = [
@ -52,11 +52,16 @@ large_thread = [
"erg_compiler/large_thread"
]
[dependencies]
[workspace.dependencies]
erg_common = { version = "0.6.0", path = "./compiler/erg_common" }
erg_parser = { version = "0.6.0", path = "./compiler/erg_parser" }
erg_compiler = { version = "0.6.0", path = "./compiler/erg_compiler" }
[dependencies]
erg_common = { workspace = true }
erg_parser = { workspace = true }
erg_compiler = { workspace = true }
[lib]
path = "src/lib.rs"

View file

@ -36,11 +36,11 @@ large_thread = [
]
[dependencies]
erg_common = { version = "0.6.0", path = "../erg_common" }
erg_parser = { version = "0.6.0", path = "../erg_parser" }
erg_common = { workspace = true, path = "../erg_common" }
erg_parser = { workspace = true, path = "../erg_parser" }
[build-dependencies]
erg_common = { version = "0.6.0", path = "../erg_common" }
erg_common = { workspace = true, path = "../erg_common" }
[lib]
path = "lib.rs"

View file

@ -19,7 +19,7 @@ pretty = ["erg_common/pretty"]
large_thread = ["erg_common/large_thread"]
[dependencies]
erg_common = { version = "0.6.0", path = "../erg_common" }
erg_common = { workspace = true, path = "../erg_common" }
unicode-xid = "0.2.4"
[lib]