mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-01 21:21:10 +00:00
Update Cargo.toml
This commit is contained in:
parent
16b50347d4
commit
6a94a09679
3 changed files with 16 additions and 11 deletions
19
Cargo.toml
19
Cargo.toml
|
@ -1,14 +1,14 @@
|
||||||
[package]
|
[package]
|
||||||
name = "erg"
|
name = "erg"
|
||||||
version = "0.6.0"
|
|
||||||
description = "The Erg programming language"
|
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"
|
documentation = "https://docs.rs/erg"
|
||||||
homepage = "https://erg-lang.org/"
|
|
||||||
keywords = ["erg", "programming-language"]
|
keywords = ["erg", "programming-language"]
|
||||||
|
version.workspace = true
|
||||||
|
authors.workspace = true
|
||||||
|
license.workspace = true
|
||||||
|
edition.workspace = true
|
||||||
|
repository.workspace = true
|
||||||
|
homepage.workspace = true
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
|
@ -52,11 +52,16 @@ large_thread = [
|
||||||
"erg_compiler/large_thread"
|
"erg_compiler/large_thread"
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[workspace.dependencies]
|
||||||
erg_common = { version = "0.6.0", path = "./compiler/erg_common" }
|
erg_common = { version = "0.6.0", path = "./compiler/erg_common" }
|
||||||
erg_parser = { version = "0.6.0", path = "./compiler/erg_parser" }
|
erg_parser = { version = "0.6.0", path = "./compiler/erg_parser" }
|
||||||
erg_compiler = { version = "0.6.0", path = "./compiler/erg_compiler" }
|
erg_compiler = { version = "0.6.0", path = "./compiler/erg_compiler" }
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
erg_common = { workspace = true }
|
||||||
|
erg_parser = { workspace = true }
|
||||||
|
erg_compiler = { workspace = true }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
|
|
|
@ -36,11 +36,11 @@ large_thread = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
erg_common = { version = "0.6.0", path = "../erg_common" }
|
erg_common = { workspace = true, path = "../erg_common" }
|
||||||
erg_parser = { version = "0.6.0", path = "../erg_parser" }
|
erg_parser = { workspace = true, path = "../erg_parser" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
erg_common = { version = "0.6.0", path = "../erg_common" }
|
erg_common = { workspace = true, path = "../erg_common" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
|
@ -19,7 +19,7 @@ pretty = ["erg_common/pretty"]
|
||||||
large_thread = ["erg_common/large_thread"]
|
large_thread = ["erg_common/large_thread"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
erg_common = { version = "0.6.0", path = "../erg_common" }
|
erg_common = { workspace = true, path = "../erg_common" }
|
||||||
unicode-xid = "0.2.4"
|
unicode-xid = "0.2.4"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue