diff --git a/crates/common_lang_types/Cargo.toml b/crates/common_lang_types/Cargo.toml index df5b2f5da..f1ed500b5 100644 --- a/crates/common_lang_types/Cargo.toml +++ b/crates/common_lang_types/Cargo.toml @@ -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 } diff --git a/crates/graphql_artifact_generation/Cargo.toml b/crates/graphql_artifact_generation/Cargo.toml index 77c59cf63..a5b4137d8 100644 --- a/crates/graphql_artifact_generation/Cargo.toml +++ b/crates/graphql_artifact_generation/Cargo.toml @@ -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" } diff --git a/crates/graphql_lang_types/Cargo.toml b/crates/graphql_lang_types/Cargo.toml index 298fc9955..93cc429fd 100644 --- a/crates/graphql_lang_types/Cargo.toml +++ b/crates/graphql_lang_types/Cargo.toml @@ -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 } diff --git a/crates/graphql_schema_parser/Cargo.toml b/crates/graphql_schema_parser/Cargo.toml index 6ad464880..7807c3db7 100644 --- a/crates/graphql_schema_parser/Cargo.toml +++ b/crates/graphql_schema_parser/Cargo.toml @@ -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 } diff --git a/crates/isograph_cli/Cargo.toml b/crates/isograph_cli/Cargo.toml index 17a5b9ee5..7406fb702 100644 --- a/crates/isograph_cli/Cargo.toml +++ b/crates/isograph_cli/Cargo.toml @@ -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 } diff --git a/crates/isograph_lang_parser/Cargo.toml b/crates/isograph_lang_parser/Cargo.toml index 7e1afec96..298fe8f81 100644 --- a/crates/isograph_lang_parser/Cargo.toml +++ b/crates/isograph_lang_parser/Cargo.toml @@ -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" } diff --git a/crates/isograph_lang_types/Cargo.toml b/crates/isograph_lang_types/Cargo.toml index ed3829eee..12353721c 100644 --- a/crates/isograph_lang_types/Cargo.toml +++ b/crates/isograph_lang_types/Cargo.toml @@ -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" } diff --git a/crates/isograph_lsp/Cargo.toml b/crates/isograph_lsp/Cargo.toml index 363a49cab..af858f5cb 100644 --- a/crates/isograph_lsp/Cargo.toml +++ b/crates/isograph_lsp/Cargo.toml @@ -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"] } diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index bda57aaf8..77d017abd 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -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" }