Skip to content

Commit 0498dd0

Browse files
committed
set common parameters in the workspace
1 parent 2319668 commit 0498dd0

File tree

8 files changed

+44
-13
lines changed

8 files changed

+44
-13
lines changed

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,10 @@ members = [
1010
]
1111

1212
resolver = "2"
13+
14+
[workspace.package]
15+
authors = ["Anand Balakrishnan"]
16+
license = "BSD-3-Clause"
17+
18+
edition = "2021"
19+
rust-version = "1.66"

argus-automata/Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[package]
22
name = "argus-automata"
33
version = "0.0.0"
4-
edition = "2021"
54

6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
5+
authors.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
79

810
[dependencies]
911
petgraph = "0.6.4"

argus-core/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "argus-core"
33
version = "0.1.0"
4-
edition = "2021"
4+
5+
authors.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
59

610
[dependencies]
711
derive_more = "0.99.17"

argus-derive/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "argus-derive"
33
version = "0.1.0"
4-
edition = "2021"
4+
5+
authors.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
59

610
[lib]
711
proc-macro = true

argus-parser/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "argus-parser"
33
version = "0.1.0"
4-
edition = "2021"
4+
5+
authors.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
59

610
[[example]]
711
name = "dump_parse_tree"
@@ -17,5 +21,5 @@ ariadne = { version = "0.3.0", optional = true }
1721
chumsky = { version = "1.0.0-alpha.4", features = ["default", "label"] }
1822

1923
[features]
20-
24+
default = []
2125
reporting = ["dep:ariadne"]

argus-semantics/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "argus-semantics"
33
version = "0.1.0"
4-
edition = "2021"
4+
5+
authors.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
59

610
[dependencies]
711
argus-core = { version = "0.1.0", path = "../argus-core" }

argus/Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
name = "argus"
33
version = "0.1.0"
44

5-
authors = ["Anand Balakrishnan"]
6-
license = "BSD-3-Clause"
7-
8-
edition = "2021"
9-
rust-version = "1.66"
5+
authors.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
109

1110
[dependencies]
11+
argus-core = { version = "0.1.0", path = "../argus-core" }
12+
argus-parser = { version = "0.1.0", path = "../argus-parser" }
13+
argus-semantics = { version = "0.1.0", path = "../argus-semantics" }

pyargus/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "pyargus"
33
version = "0.1.0"
4-
edition = "2021"
4+
5+
authors.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
59

610
[lib]
711
name = "pyargus"

0 commit comments

Comments
 (0)