Skip to content

Commit 635a021

Browse files
committed
cargo rail unify
1 parent 3a65660 commit 635a021

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

Cargo.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,10 @@ license = "Apache-2.0"
1010
publish = false
1111
readme = "README.md"
1212
repository = "https://github.com/Porges/html2rdf"
13+
rust-version = "1.82.0"
14+
15+
[workspace.dependencies]
16+
html2rdf = { path = "html2rdf" }
17+
oxiri = "^0.2.11"
18+
oxrdf = "^0.2.4"
19+
oxttl = "^0.1.8"

html2rdf-cli/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ path = "src/main.rs"
1515

1616
[dependencies]
1717
clap = { version = "4.5.38", features = ["derive", "wrap_help"] }
18-
html2rdf = { path = "../html2rdf" }
19-
oxiri = "0.2.11"
20-
oxrdf = "0.2.4"
21-
oxttl = "0.1.8"
18+
html2rdf = { workspace = true }
19+
oxiri = { workspace = true }
20+
oxrdf = { workspace = true }
21+
oxttl = { workspace = true }
2222
reqwest = { version = "0.12.15", features = ["blocking"] }
2323
url = "2.5.4"

html2rdf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ derive_more = { version = "2.0.1", features = ["display", "error", "from", "from
1515
icu = { version = "2.0.0-beta2" }
1616
indexmap = "2.9.0"
1717
itertools = "0.14.0"
18-
oxiri = "0.2.11"
19-
oxrdf = "0.2.4"
18+
oxiri = { workspace = true }
19+
oxrdf = { workspace = true }
2020
oxsdatatypes = "0.2.2"
2121
rdf-canon = "0.15.1"
2222
rxml_validation = "0.11.0"
@@ -25,7 +25,7 @@ vec1 = "1.12.1"
2525

2626
[dev-dependencies]
2727
insta = { version = "1.43.1", features = ["glob"] }
28-
oxttl = "0.1.8"
28+
oxttl = { workspace = true }
2929
pretty_assertions = "1.4.1"
3030
rstest = { version = "0.25.0", default-features = false, features = ["crate-name"] }
3131
sha2 = "0.10.9"

0 commit comments

Comments
 (0)