Skip to content

Commit

Permalink
format Cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
rbalicki2 committed Jan 1, 2025
1 parent a8143b3 commit 47d4652
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 21 deletions.
2 changes: 1 addition & 1 deletion crates/common_lang_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ license = { workspace = true }
[dependencies]
intern = { path = "../../relay-crates/intern" }
string_key_newtype = { path = "../string_key_newtype" }
serde = { workspace = true }
serde = { workspace = true }
4 changes: 2 additions & 2 deletions crates/graphql_artifact_generation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ license = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pathdiff = { workspace = true }
lazy_static = { workspace = true }
pathdiff = { workspace = true }
lazy_static = { workspace = true }
isograph_schema = { path = "../isograph_schema" }
isograph_config = { path = "../isograph_config" }
isograph_lang_types = { path = "../isograph_lang_types" }
Expand Down
6 changes: 3 additions & 3 deletions crates/graphql_lang_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ license = { workspace = true }
[dependencies]
intern = { path = "../../relay-crates/intern" }
common_lang_types = { path = "../common_lang_types" }
strum = { version="0.25.0", features=["derive"] }
serde = { workspace = true }
thiserror = { workspace = true }
strum = { version = "0.25.0", features = ["derive"] }
serde = { workspace = true }
thiserror = { workspace = true }
2 changes: 1 addition & 1 deletion crates/graphql_schema_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ graphql-syntax = { path = "../../relay-crates/graphql-syntax" }
intern = { path = "../../relay-crates/intern" }
graphql_lang_types = { path = "../graphql_lang_types" }
common_lang_types = { path = "../common_lang_types" }
logos = { workspace = true }
logos = { workspace = true }
thiserror = { workspace = true }
2 changes: 1 addition & 1 deletion crates/isograph_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = { workspace = true }
[dependencies]
isograph_compiler = { path = "../isograph_compiler" }
isograph_config = { path = "../isograph_config" }
isograph_lsp= { path = "../isograph_lsp"}
isograph_lsp = { path = "../isograph_lsp" }
colored = { workspace = true }
clap = { workspace = true }
thiserror = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/isograph_lang_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "isograph_lang_parser"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true}
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }

[dependencies]
common_lang_types = { path = "../common_lang_types" }
Expand Down
6 changes: 3 additions & 3 deletions crates/isograph_lang_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "isograph_lang_types"
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true}
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }

[dependencies]
common_lang_types = { path = "../common_lang_types" }
Expand Down
15 changes: 9 additions & 6 deletions crates/isograph_lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,19 @@ edition = { workspace = true }
license = { workspace = true }

[dependencies]
common_lang_types = { path = "../common_lang_types"}
common_lang_types = { path = "../common_lang_types" }
intern = { path = "../../relay-crates/intern" }
isograph_compiler = { path = "../isograph_compiler"}
isograph_lang_parser = { path = "../isograph_lang_parser"}
isograph_lang_types = { path = "../isograph_lang_types"}
isograph_config = { path = "../isograph_config"}
isograph_compiler = { path = "../isograph_compiler" }
isograph_lang_parser = { path = "../isograph_lang_parser" }
isograph_lang_types = { path = "../isograph_lang_types" }
isograph_config = { path = "../isograph_config" }
log = { workspace = true, features = ["kv_unstable", "kv_unstable_std"] }
lsp-server = { workspace = true }
lsp-types = { workspace = true }
serde = { workspace = true, features = ["derive", "rc"] }
serde_json = { workspace = true, features = ["float_roundtrip", "unbounded_depth"] }
serde_json = { workspace = true, features = [
"float_roundtrip",
"unbounded_depth",
] }
crossbeam = { workspace = true }
tokio = { workspace = true, features = ["full", "test-util", "tracing"] }
2 changes: 1 addition & 1 deletion crates/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ colorize = { workspace = true }
serde = { workspace = true }

[dev-dependencies]
graphql_schema_parser = { path = "../graphql_schema_parser"}
graphql_schema_parser = { path = "../graphql_schema_parser" }

0 comments on commit 47d4652

Please sign in to comment.