use workspace dependencies

This commit is contained in:
Jeong YunWon 2023-02-06 14:18:16 +09:00
parent bff9884df1
commit 00dc7ec709
5 changed files with 34 additions and 31 deletions

View file

@ -11,16 +11,16 @@ edition = "2021"
rustpython-ast = { path = "../ast", features = ["unparse"] }
rustpython-compiler-core = { path = "../core", version = "0.2.0" }
ahash = "0.7.6"
bitflags = "1.3.2"
indexmap = "1.8.1"
itertools = "0.10.3"
log = "0.4.16"
num-complex = { version = "0.4.0", features = ["serde"] }
num-traits = "0.2.14"
thiserror = "1.0"
ahash = { workspace = true }
bitflags = { workspace = true }
indexmap = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
num-complex = { workspace = true, features = ["serde"] }
num-traits = { workspace = true }
thiserror = { workspace = true }
[dev-dependencies]
rustpython-parser = { path = "../parser" }
insta = "1.14.0"
insta = { workspace = true }