Skip to content

Commit

Permalink
build: remove unnecessary keys
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Apr 22, 2023
1 parent db9a7fd commit b444fca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions crates/els/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ large_thread = ["erg_common/large_thread", "erg_compiler/large_thread"]
py_compat = ["erg_compiler/py_compat"]

[dependencies]
erg_common = { workspace = true, path = "../erg_common", features = ["els"] }
erg_compiler = { workspace = true, path = "../erg_compiler", features = ["els"] }
erg_common = { workspace = true, features = ["els"] }
erg_compiler = { workspace = true, features = ["els"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.85"
lsp-types = { version = "0.93.2", features = ["proposed"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/erg_compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ no_std = ["erg_common/no_std"]
full-repl = ["erg_common/full-repl"]

[dependencies]
erg_common = { workspace = true, path = "../erg_common" }
erg_parser = { workspace = true, path = "../erg_parser" }
erg_common = { workspace = true }
erg_parser = { workspace = true }

[build-dependencies]
erg_common = { workspace = true, path = "../erg_common" }
erg_common = { workspace = true }

[lib]
path = "lib.rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/erg_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pretty = ["erg_common/pretty"]
large_thread = ["erg_common/large_thread"]

[dependencies]
erg_common = { workspace = true, path = "../erg_common" }
erg_common = { workspace = true }
unicode-xid = "0.2.4"

[lib]
Expand Down

0 comments on commit b444fca

Please sign in to comment.