use workspace dependencies

This commit is contained in:
Jeong YunWon
2023-02-06 14:18:16 +09:00
parent adc23253e4
commit 42a22c280d
15 changed files with 176 additions and 141 deletions

View File

@@ -7,12 +7,13 @@ edition = "2021"
rustpython-compiler-core = { path = "../compiler/core", version = "0.2.0" }
rustpython-doc = { git = "https://github.com/RustPython/__doc__", branch = "main" }
indexmap = "1.8.1"
itertools = "0.10.3"
indexmap = { workspace = true }
itertools = { workspace = true }
once_cell = { workspace = true }
syn = { workspace = true, features = ["full", "extra-traits"] }
maplit = "1.0.2"
once_cell = "1.10.0"
proc-macro2 = "1.0.37"
quote = "1.0.18"
syn = { version = "1.0.91", features = ["full", "extra-traits"] }
syn-ext = { version = "0.4.0", features = ["full"] }
textwrap = { version = "0.15.0", default-features = false }