Skip to content

Commit 7d39737

Browse files
committed
chore: inherit workspace metadata for validation rust crate
Signed-off-by: lucarlig <luca.carlig@ibm.com>
1 parent 0c821d6 commit 7d39737

File tree

2 files changed

+90
-8
lines changed

2 files changed

+90
-8
lines changed

Cargo.lock

Lines changed: 76 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "validation_middleware_rust"
3-
version = "0.1.0"
4-
edition = "2021"
5-
license = "Apache-2.0"
3+
version.workspace = true
4+
edition.workspace = true
5+
rust-version.workspace = true
6+
license.workspace = true
7+
authors.workspace = true
8+
repository.workspace = true
69

710
[lib]
811
name = "validation_middleware_rust"
@@ -14,12 +17,15 @@ path = "src/bin/stub_gen.rs"
1417

1518
[dependencies]
1619
once_cell = "1.21.3"
17-
pyo3 = { version = "0.27.1", features = ["abi3-py311"] }
18-
pyo3-stub-gen = "0.19"
19-
regex = "1.12.2"
20-
serde = "1.0.228"
21-
serde_json = { version = "1.0.149", features = ["unbounded_depth"] }
20+
pyo3.workspace = true
21+
pyo3-stub-gen.workspace = true
22+
regex.workspace = true
23+
serde.workspace = true
24+
serde_json = { workspace = true, features = ["unbounded_depth"] }
2225
serde_stacker = "0.1.12"
2326

2427
[dev-dependencies]
2528
tempfile = "3.23.0"
29+
30+
[lints]
31+
workspace = true

0 commit comments

Comments
 (0)