Skip to content

Commit d1a1469

Browse files
committed
Update manifest files to inherit from workspace
1 parent 7af7e4c commit d1a1469

File tree

8 files changed

+58
-16
lines changed

8 files changed

+58
-16
lines changed

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,12 @@ members = [
88
"cobalt-parser",
99
"cobalt-utils"
1010
]
11+
12+
[workspace.package]
13+
version = "0.7.0"
14+
authors = ["Matthew Cornell <mcornell400708@gmail.com>", "Varun Malladi <varun.malladi@gmail.com>"]
15+
edition = "2021"
16+
license = "MIT"
17+
repository = "https://github.com/matt-cornell/cobalt-lang"
18+
description = "Cobalt is a low-level, compiled programming language made as an alternative to C++ and Rust."
19+
documentation = "https://matt-cornell.github.io/cobalt-docs"

cobalt-ast/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "cobalt-ast"
3-
version = "0.7.0"
4-
edition = "2021"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
9+
documentation.workspace = true
510

611
[dependencies]
712
cobalt-errors = { path = "../cobalt-errors" }

cobalt-build/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "cobalt-build"
3-
version = "0.7.0"
4-
edition = "2021"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
9+
documentation.workspace = true
510

611
[dependencies]
712
cobalt-parser = { path = "../cobalt-parser" }

cobalt-cli/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "cobalt-cli"
3-
version = "0.7.0"
4-
edition = "2021"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
9+
documentation.workspace = true
510

611
[dependencies]
712
cobalt-parser = { path = "../cobalt-parser" }

cobalt-errors/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "cobalt-errors"
3-
version = "0.7.0"
4-
edition = "2021"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
9+
documentation.workspace = true
510

611
[dependencies]
712
termcolor = "1.2.0"

cobalt-llvm/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "cobalt-llvm"
3-
version = "0.7.0"
4-
edition = "2021"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
9+
documentation.workspace = true
510

611
[dependencies]
712
inkwell = { version = "0.2.0" }

cobalt-parser/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
[package]
22
name = "cobalt-parser"
3-
version = "0.7.0"
4-
edition = "2021"
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
9+
documentation.workspace = true
510

611
[dependencies]
712
cobalt-errors = { path = "../cobalt-errors" }

cobalt-utils/Cargo.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[package]
22
name = "cobalt-utils"
3-
version = "0.7.0"
4-
edition = "2021"
5-
6-
[dependencies]
3+
version.workspace = true
4+
authors.workspace = true
5+
edition.workspace = true
6+
license.workspace = true
7+
repository.workspace = true
8+
description.workspace = true
9+
documentation.workspace = true

0 commit comments

Comments
 (0)