Skip to content

Commit 0c17243

Browse files
oscargusSchottkyc137
authored andcommitted
Move information to workspace and specify MSRV
1 parent bbd7f0a commit 0c17243

File tree

5 files changed

+33
-21
lines changed

5 files changed

+33
-21
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,12 @@
77
[workspace]
88
resolver = "2"
99
members = ["vhdl_lang_macros", "vhdl_lang", "vhdl_ls"]
10+
11+
[workspace.package]
12+
version = "0.84.0"
13+
authors = ["Olof Kraigher <[email protected]>"]
14+
license = "MPL-2.0"
15+
edition = "2021"
16+
rust-version = "1.82"
17+
repository = "https://github.com/VHDL-LS/rust_hdl"
18+
readme = "README.md"

vhdl_lang/Cargo.toml

+7-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66

77
[package]
88
name = "vhdl_lang"
9-
version = "0.84.0"
10-
authors = ["Olof Kraigher <[email protected]>"]
11-
license = "MPL-2.0"
9+
version.workspace = true
10+
authors.workspace = true
11+
license.workspace = true
1212
description = "VHDL Language Frontend"
13-
repository = "https://github.com/kraigher/rust_hdl"
14-
edition = "2021"
13+
repository.workspace = true
14+
edition.workspace = true
15+
rust-version.workspace = true
1516

1617
[dependencies]
1718
vhdl_lang_macros = { version = "^0.84.0", path = "../vhdl_lang_macros" }
@@ -34,7 +35,7 @@ enum-map = "2.7.3"
3435
tempfile = "3"
3536
pretty_assertions = "1"
3637
assert_matches = "1"
37-
brunch = "0"
38+
brunch = "0.8"
3839
assert_cmd = "2.0.14"
3940
predicates = "3.1.0"
4041

vhdl_lang_macros/Cargo.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66

77
[package]
88
name = "vhdl_lang_macros"
9-
version = "0.84.0"
10-
authors = ["Olof Kraigher <[email protected]>"]
11-
license = "MPL-2.0"
9+
version.workspace = true
10+
authors.workspace = true
11+
license.workspace = true
1212
description = "VHDL Language Frontend - Macros"
13-
repository = "https://github.com/kraigher/rust_hdl"
14-
edition = "2021"
13+
repository.workspace = true
14+
edition.workspace = true
15+
rust-version.workspace = true
1516

1617
[lib]
1718
proc-macro = true

vhdl_ls/Cargo.toml

+7-6
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66

77
[package]
88
name = "vhdl_ls"
9-
version = "0.84.0"
10-
authors = ["Olof Kraigher <[email protected]>"]
11-
license = "MPL-2.0"
9+
version.workspace = true
10+
authors.workspace = true
11+
license.workspace = true
1212
description = "VHDL Language Server"
13-
repository = "https://github.com/kraigher/rust_hdl"
14-
edition = "2021"
15-
readme = "../README.md"
13+
repository.workspace = true
14+
edition.workspace = true
15+
readme.workspace = true
16+
rust-version.workspace = true
1617

1718
[dependencies]
1819
vhdl_lang = { version = "^0.84.0", path = "../vhdl_lang" }

0 commit comments

Comments
 (0)