Consistent Cargo.toml syntax (#483)

Remove the last Cargo.toml inconsistencies, see
1526b3458a (r1401083681).
Now all `[dependencies]` are workspace dependencies.
This commit is contained in:
konsti 2023-11-22 09:34:08 +01:00 committed by GitHub
parent 934e32ea98
commit 7c7daa8f83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 21 additions and 18 deletions

View file

@ -18,12 +18,11 @@ crate-type = ["rlib", "cdylib"]
[dependencies]
once_cell = { workspace = true }
pyo3 = { workspace = true, optional = true, features = ["extension-module", "abi3-py37"] }
regex = { workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }
tracing = { workspace = true, optional = true }
unicode-width = { workspace = true }
pyo3 = { version = "0.20", optional = true, features = ["extension-module", "abi3-py37"] }
[dev-dependencies]
indoc = "2.0.4"