diff --git a/Cargo.toml b/Cargo.toml index 5a7aa249e558..146884264102 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,221 +1,228 @@ [workspace] # Use the newer version of the cargo resolver # https://doc.rust-lang.org/cargo/reference/resolver.html#resolver-versions -members = ["crates/*", "xtask/bench", "xtask/codegen", "xtask/coverage", "xtask/libs_bench", "xtask/rules_check"] +members = [ + "crates/*", + "xtask/bench", + "xtask/codegen", + "xtask/coverage", + "xtask/libs_bench", + "xtask/rules_check", +] resolver = "2" [workspace.lints.rust] absolute_paths_not_starting_with_crate = "warn" -dead_code = "warn" -trivial_numeric_casts = "warn" -unused_import_braces = "warn" -unused_lifetimes = "warn" -unused_macro_rules = "warn" +dead_code = "warn" +trivial_numeric_casts = "warn" +unused_import_braces = "warn" +unused_lifetimes = "warn" +unused_macro_rules = "warn" [workspace.lints.clippy] -cargo_common_metadata = "allow" -empty_docs = "allow" # there are some false positives inside biome_wasm +cargo_common_metadata = "allow" +empty_docs = "allow" # there are some false positives inside biome_wasm multiple_crate_versions = "allow" # pedantic -assigning_clones = "warn" -checked_conversions = "warn" -cloned_instead_of_copied = "warn" -copy_iterator = "warn" -dbg_macro = "warn" -doc_link_with_quotes = "warn" -empty_enum = "warn" -expl_impl_clone_on_copy = "warn" -explicit_into_iter_loop = "warn" -filter_map_next = "warn" -flat_map_option = "warn" -fn_params_excessive_bools = "warn" +assigning_clones = "warn" +checked_conversions = "warn" +cloned_instead_of_copied = "warn" +copy_iterator = "warn" +dbg_macro = "warn" +doc_link_with_quotes = "warn" +empty_enum = "warn" +expl_impl_clone_on_copy = "warn" +explicit_into_iter_loop = "warn" +filter_map_next = "warn" +flat_map_option = "warn" +fn_params_excessive_bools = "warn" from_iter_instead_of_collect = "warn" -implicit_clone = "warn" -implicit_hasher = "warn" -index_refutable_slice = "warn" -inefficient_to_string = "warn" -invalid_upcast_comparisons = "warn" -iter_filter_is_ok = "warn" -iter_not_returning_iterator = "warn" -large_stack_arrays = "warn" -large_types_passed_by_value = "warn" -macro_use_imports = "warn" -manual_is_variant_and = "warn" -manual_ok_or = "warn" -manual_string_new = "warn" -map_flatten = "warn" -map_unwrap_or = "warn" +implicit_clone = "warn" +implicit_hasher = "warn" +index_refutable_slice = "warn" +inefficient_to_string = "warn" +invalid_upcast_comparisons = "warn" +iter_filter_is_ok = "warn" +iter_not_returning_iterator = "warn" +large_stack_arrays = "warn" +large_types_passed_by_value = "warn" +macro_use_imports = "warn" +manual_is_variant_and = "warn" +manual_ok_or = "warn" +manual_string_new = "warn" +map_flatten = "warn" +map_unwrap_or = "warn" mismatching_type_param_order = "warn" -mut_mut = "warn" -naive_bytecount = "warn" -needless_bitwise_bool = "warn" -needless_continue = "warn" -needless_for_each = "warn" +mut_mut = "warn" +naive_bytecount = "warn" +needless_bitwise_bool = "warn" +needless_continue = "warn" +needless_for_each = "warn" no_effect_underscore_binding = "warn" -option_as_ref_cloned = "warn" -ref_binding_to_reference = "warn" -ref_option_ref = "warn" -single_char_pattern = "warn" -stable_sort_primitive = "warn" -str_split_at_newline = "warn" -unnecessary_box_returns = "warn" -unnecessary_join = "warn" -unnested_or_patterns = "warn" -unreadable_literal = "warn" -verbose_bit_mask = "warn" -zero_sized_map_values = "warn" +option_as_ref_cloned = "warn" +ref_binding_to_reference = "warn" +ref_option_ref = "warn" +single_char_pattern = "warn" +stable_sort_primitive = "warn" +str_split_at_newline = "warn" +unnecessary_box_returns = "warn" +unnecessary_join = "warn" +unnested_or_patterns = "warn" +unreadable_literal = "warn" +verbose_bit_mask = "warn" +zero_sized_map_values = "warn" # restriction -cfg_not_test = "warn" -empty_drop = "warn" +cfg_not_test = "warn" +empty_drop = "warn" empty_enum_variants_with_brackets = "warn" -float_cmp_const = "warn" -get_unwrap = "warn" -infinite_loop = "warn" -lossy_float_literal = "warn" -rc_buffer = "warn" -rc_mutex = "warn" -rest_pat_in_fully_bound_structs = "warn" -string_lit_chars_any = "warn" -verbose_file_reads = "warn" +float_cmp_const = "warn" +get_unwrap = "warn" +infinite_loop = "warn" +lossy_float_literal = "warn" +rc_buffer = "warn" +rc_mutex = "warn" +rest_pat_in_fully_bound_structs = "warn" +string_lit_chars_any = "warn" +verbose_file_reads = "warn" # https://github.com/rustwasm/wasm-bindgen/issues/3944 #mem_forget = "warn" [workspace.package] -authors = ["Biome Developers and Contributors"] +authors = ["Biome Developers and Contributors"] categories = ["development-tools", "web-programming"] -edition = "2021" -homepage = "https://biomejs.dev/" -keywords = ["parser", "linter", "formatter"] -license = "MIT OR Apache-2.0" +edition = "2021" +homepage = "https://biomejs.dev/" +keywords = ["parser", "linter", "formatter"] +license = "MIT OR Apache-2.0" repository = "https://github.com/biomejs/biome" [profile.release-with-debug] -debug = true +debug = true inherits = "release" [workspace.dependencies] # publish -biome_analyze = { version = "0.5.7", path = "./crates/biome_analyze" } -biome_aria = { version = "0.5.7", path = "./crates/biome_aria" } -biome_aria_metadata = { version = "0.5.7", path = "./crates/biome_aria_metadata" } -biome_console = { version = "0.5.7", path = "./crates/biome_console" } -biome_control_flow = { version = "0.5.7", path = "./crates/biome_control_flow" } -biome_css_analyze = { version = "0.5.7", path = "./crates/biome_css_analyze" } -biome_css_factory = { version = "0.5.7", path = "./crates/biome_css_factory" } -biome_css_formatter = { version = "0.5.7", path = "./crates/biome_css_formatter" } -biome_css_parser = { version = "0.5.7", path = "./crates/biome_css_parser" } -biome_css_semantic = { version = "0.0.0", path = "./crates/biome_css_semantic" } -biome_css_syntax = { version = "0.5.7", path = "./crates/biome_css_syntax" } -biome_deserialize = { version = "0.6.0", path = "./crates/biome_deserialize" } -biome_deserialize_macros = { version = "0.6.0", path = "./crates/biome_deserialize_macros" } -biome_diagnostics = { version = "0.5.7", path = "./crates/biome_diagnostics" } +biome_analyze = { version = "0.5.7", path = "./crates/biome_analyze" } +biome_aria = { version = "0.5.7", path = "./crates/biome_aria" } +biome_aria_metadata = { version = "0.5.7", path = "./crates/biome_aria_metadata" } +biome_console = { version = "0.5.7", path = "./crates/biome_console" } +biome_control_flow = { version = "0.5.7", path = "./crates/biome_control_flow" } +biome_css_analyze = { version = "0.5.7", path = "./crates/biome_css_analyze" } +biome_css_factory = { version = "0.5.7", path = "./crates/biome_css_factory" } +biome_css_formatter = { version = "0.5.7", path = "./crates/biome_css_formatter" } +biome_css_parser = { version = "0.5.7", path = "./crates/biome_css_parser" } +biome_css_semantic = { version = "0.0.0", path = "./crates/biome_css_semantic" } +biome_css_syntax = { version = "0.5.7", path = "./crates/biome_css_syntax" } +biome_deserialize = { version = "0.6.0", path = "./crates/biome_deserialize" } +biome_deserialize_macros = { version = "0.6.0", path = "./crates/biome_deserialize_macros" } +biome_diagnostics = { version = "0.5.7", path = "./crates/biome_diagnostics" } biome_diagnostics_categories = { version = "0.5.7", path = "./crates/biome_diagnostics_categories" } -biome_diagnostics_macros = { version = "0.5.7", path = "./crates/biome_diagnostics_macros" } -biome_formatter = { version = "0.5.7", path = "./crates/biome_formatter" } -biome_fs = { version = "0.5.7", path = "./crates/biome_fs" } -biome_graphql_analyze = { version = "0.0.1", path = "./crates/biome_graphql_analyze" } -biome_graphql_factory = { version = "0.1.0", path = "./crates/biome_graphql_factory" } -biome_graphql_formatter = { version = "0.1.0", path = "./crates/biome_graphql_formatter" } -biome_graphql_parser = { version = "0.1.0", path = "./crates/biome_graphql_parser" } -biome_graphql_semantic = { version = "0.0.0", path = "./crates/biome_graphql_semantic" } -biome_graphql_syntax = { version = "0.1.0", path = "./crates/biome_graphql_syntax" } -biome_grit_factory = { version = "0.5.7", path = "./crates/biome_grit_factory" } -biome_grit_formatter = { version = "0.0.0", path = "./crates/biome_grit_formatter" } -biome_grit_parser = { version = "0.1.0", path = "./crates/biome_grit_parser" } -biome_grit_patterns = { version = "0.0.1", path = "./crates/biome_grit_patterns" } -biome_grit_syntax = { version = "0.5.7", path = "./crates/biome_grit_syntax" } -biome_html_factory = { version = "0.5.7", path = "./crates/biome_html_factory" } -biome_html_formatter = { version = "0.0.0", path = "./crates/biome_html_formatter" } -biome_html_parser = { version = "0.0.1", path = "./crates/biome_html_parser" } -biome_html_syntax = { version = "0.5.7", path = "./crates/biome_html_syntax" } -biome_js_analyze = { version = "0.5.7", path = "./crates/biome_js_analyze" } -biome_js_factory = { version = "0.5.7", path = "./crates/biome_js_factory" } -biome_js_formatter = { version = "0.5.7", path = "./crates/biome_js_formatter" } -biome_js_parser = { version = "0.5.7", path = "./crates/biome_js_parser" } -biome_js_semantic = { version = "0.5.7", path = "./crates/biome_js_semantic" } -biome_js_syntax = { version = "0.5.7", path = "./crates/biome_js_syntax" } -biome_json_analyze = { version = "0.5.7", path = "./crates/biome_json_analyze" } -biome_json_factory = { version = "0.5.7", path = "./crates/biome_json_factory" } -biome_json_formatter = { version = "0.5.7", path = "./crates/biome_json_formatter" } -biome_json_parser = { version = "0.5.7", path = "./crates/biome_json_parser" } -biome_json_syntax = { version = "0.5.7", path = "./crates/biome_json_syntax" } -biome_lsp_converters = { version = "0.1.0", path = "./crates/biome_lsp_converters" } -biome_markdown_factory = { version = "0.0.1", path = "./crates/biome_markdown_factory" } -biome_markdown_parser = { version = "0.0.1", path = "./crates/biome_markdown_parser" } -biome_markdown_syntax = { version = "0.0.1", path = "./crates/biome_markdown_syntax" } -biome_yaml_factory = { version = "0.0.1", path = "./crates/biome_yaml_factory" } -biome_yaml_parser = { version = "0.0.1", path = "./crates/biome_yaml_parser" } -biome_yaml_syntax = { version = "0.0.1", path = "./crates/biome_yaml_syntax" } +biome_diagnostics_macros = { version = "0.5.7", path = "./crates/biome_diagnostics_macros" } +biome_formatter = { version = "0.5.7", path = "./crates/biome_formatter" } +biome_fs = { version = "0.5.7", path = "./crates/biome_fs" } +biome_graphql_analyze = { version = "0.0.1", path = "./crates/biome_graphql_analyze" } +biome_graphql_factory = { version = "0.1.0", path = "./crates/biome_graphql_factory" } +biome_graphql_formatter = { version = "0.1.0", path = "./crates/biome_graphql_formatter" } +biome_graphql_parser = { version = "0.1.0", path = "./crates/biome_graphql_parser" } +biome_graphql_semantic = { version = "0.0.0", path = "./crates/biome_graphql_semantic" } +biome_graphql_syntax = { version = "0.1.0", path = "./crates/biome_graphql_syntax" } +biome_grit_factory = { version = "0.5.7", path = "./crates/biome_grit_factory" } +biome_grit_formatter = { version = "0.0.0", path = "./crates/biome_grit_formatter" } +biome_grit_parser = { version = "0.1.0", path = "./crates/biome_grit_parser" } +biome_grit_patterns = { version = "0.0.1", path = "./crates/biome_grit_patterns" } +biome_grit_syntax = { version = "0.5.7", path = "./crates/biome_grit_syntax" } +biome_html_factory = { version = "0.5.7", path = "./crates/biome_html_factory" } +biome_html_formatter = { version = "0.0.0", path = "./crates/biome_html_formatter" } +biome_html_parser = { version = "0.0.1", path = "./crates/biome_html_parser" } +biome_html_syntax = { version = "0.5.7", path = "./crates/biome_html_syntax" } +biome_js_analyze = { version = "0.5.7", path = "./crates/biome_js_analyze" } +biome_js_factory = { version = "0.5.7", path = "./crates/biome_js_factory" } +biome_js_formatter = { version = "0.5.7", path = "./crates/biome_js_formatter" } +biome_js_parser = { version = "0.5.7", path = "./crates/biome_js_parser" } +biome_js_semantic = { version = "0.5.7", path = "./crates/biome_js_semantic" } +biome_js_syntax = { version = "0.5.7", path = "./crates/biome_js_syntax" } +biome_json_analyze = { version = "0.5.7", path = "./crates/biome_json_analyze" } +biome_json_factory = { version = "0.5.7", path = "./crates/biome_json_factory" } +biome_json_formatter = { version = "0.5.7", path = "./crates/biome_json_formatter" } +biome_json_parser = { version = "0.5.7", path = "./crates/biome_json_parser" } +biome_json_syntax = { version = "0.5.7", path = "./crates/biome_json_syntax" } +biome_lsp_converters = { version = "0.1.0", path = "./crates/biome_lsp_converters" } +biome_markdown_factory = { version = "0.0.1", path = "./crates/biome_markdown_factory" } +biome_markdown_parser = { version = "0.0.1", path = "./crates/biome_markdown_parser" } +biome_markdown_syntax = { version = "0.0.1", path = "./crates/biome_markdown_syntax" } +biome_yaml_factory = { version = "0.0.1", path = "./crates/biome_yaml_factory" } +biome_yaml_parser = { version = "0.0.1", path = "./crates/biome_yaml_parser" } +biome_yaml_syntax = { version = "0.0.1", path = "./crates/biome_yaml_syntax" } -biome_markup = { version = "0.5.7", path = "./crates/biome_markup" } -biome_parser = { version = "0.5.7", path = "./crates/biome_parser" } -biome_project = { version = "0.5.7", path = "./crates/biome_project" } -biome_rowan = { version = "0.5.7", path = "./crates/biome_rowan" } -biome_string_case = { version = "0.5.7", path = "./crates/biome_string_case" } -biome_suppression = { version = "0.5.7", path = "./crates/biome_suppression" } -biome_text_edit = { version = "0.5.7", path = "./crates/biome_text_edit" } -biome_text_size = { version = "0.5.7", path = "./crates/biome_text_size" } +biome_markup = { version = "0.5.7", path = "./crates/biome_markup" } +biome_parser = { version = "0.5.7", path = "./crates/biome_parser" } +biome_project = { version = "0.5.7", path = "./crates/biome_project" } +biome_rowan = { version = "0.5.7", path = "./crates/biome_rowan" } +biome_string_case = { version = "0.5.7", path = "./crates/biome_string_case" } +biome_suppression = { version = "0.5.7", path = "./crates/biome_suppression" } +biome_text_edit = { version = "0.5.7", path = "./crates/biome_text_edit" } +biome_text_size = { version = "0.5.7", path = "./crates/biome_text_size" } biome_unicode_table = { version = "0.5.7", path = "./crates/biome_unicode_table" } # not publish -biome_cli = { path = "./crates/biome_cli" } -biome_configuration = { path = "./crates/biome_configuration" } -biome_flags = { path = "./crates/biome_flags" } +biome_cli = { path = "./crates/biome_cli" } +biome_configuration = { path = "./crates/biome_configuration" } +biome_flags = { path = "./crates/biome_flags" } biome_formatter_test = { path = "./crates/biome_formatter_test" } -biome_lsp = { path = "./crates/biome_lsp" } -biome_migrate = { path = "./crates/biome_migrate" } -biome_service = { path = "./crates/biome_service" } -biome_test_utils = { path = "./crates/biome_test_utils" } -biome_ungrammar = { path = "./crates/biome_ungrammar" } -tests_macros = { path = "./crates/tests_macros" } +biome_lsp = { path = "./crates/biome_lsp" } +biome_migrate = { path = "./crates/biome_migrate" } +biome_service = { path = "./crates/biome_service" } +biome_test_utils = { path = "./crates/biome_test_utils" } +biome_ungrammar = { path = "./crates/biome_ungrammar" } +tests_macros = { path = "./crates/tests_macros" } # Crates needed in the workspace -anyhow = "1.0.93" -bpaf = { version = "0.9.15", features = ["derive"] } -countme = "3.0.1" -crossbeam = "0.8.4" -dashmap = "6.1.0" -enumflags2 = "0.7.10" -getrandom = "0.2.15" -globset = "0.4.15" -ignore = "0.4.23" -indexmap = { version = "2.6.0", features = ["serde"] } -insta = "1.41.1" -natord = "1.0.9" -oxc_resolver = "1.12.0" -proc-macro2 = "1.0.86" -quickcheck = "1.0.3" -quickcheck_macros = "1.0.0" -quote = "1.0.37" -rayon = "1.10.0" -regex = "1.11.1" -rustc-hash = "2.0.0" -schemars = { version = "0.8.21", features = ["indexmap2", "smallvec"] } -serde = { version = "1.0.215", features = ["derive"] } -serde_ini = "0.2.0" -serde_json = "1.0.133" -similar = "2.6.0" -slotmap = "1.0.7" -smallvec = { version = "1.13.2", features = ["union", "const_new", "serde"] } -syn = "1.0.109" -termcolor = "1.4.1" -tokio = "1.41.1" -tracing = { version = "0.1.40", default-features = false, features = ["std"] } +anyhow = "1.0.93" +bpaf = { version = "0.9.15", features = ["derive"] } +countme = "3.0.1" +crossbeam = "0.8.4" +dashmap = "6.1.0" +enumflags2 = "0.7.10" +getrandom = "0.2.15" +globset = "0.4.15" +ignore = "0.4.23" +indexmap = { version = "2.6.0", features = ["serde"] } +insta = "1.41.1" +natord = "1.0.9" +oxc_resolver = "1.12.0" +proc-macro2 = "1.0.86" +quickcheck = "1.0.3" +quickcheck_macros = "1.0.0" +quote = "1.0.37" +rayon = "1.10.0" +regex = "1.11.1" +rustc-hash = "2.0.0" +schemars = { version = "0.8.21", features = ["indexmap2", "smallvec"] } +serde = { version = "1.0.215", features = ["derive"] } +serde_ini = "0.2.0" +serde_json = "1.0.133" +similar = "2.6.0" +slotmap = "1.0.7" +smallvec = { version = "1.13.2", features = ["union", "const_new", "serde"] } +syn = "1.0.109" +termcolor = "1.4.1" +tokio = "1.41.1" +tracing = { version = "0.1.40", default-features = false, features = ["std"] } tracing-subscriber = "0.3.18" -unicode-bom = "2.0.3" -unicode-width = "0.1.12" +unicode-bom = "2.0.3" +unicode-width = "0.1.12" [profile.dev.package.biome_wasm] -debug = true +debug = true opt-level = "s" [profile.test.package.biome_wasm] -debug = true +debug = true opt-level = "s" [profile.release.package.biome_wasm] -debug = false +debug = false opt-level = 3 #[patch.crates-io] diff --git a/crates/biome_analyze/Cargo.toml b/crates/biome_analyze/Cargo.toml index 94b961b898e6..37ed1c14cd7c 100644 --- a/crates/biome_analyze/Cargo.toml +++ b/crates/biome_analyze/Cargo.toml @@ -1,32 +1,36 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's analyzer shared infrastructure" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_analyze" +description = "Biome's analyzer shared infrastructure" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_analyze" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_console = { workspace = true } -biome_deserialize = { workspace = true, optional = true } +biome_console = { workspace = true } +biome_deserialize = { workspace = true, optional = true } biome_deserialize_macros = { workspace = true, optional = true } -biome_diagnostics = { workspace = true } -biome_rowan = { workspace = true } -enumflags2 = { workspace = true } -rustc-hash = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"], optional = true } -tracing = { workspace = true } - +biome_diagnostics = { workspace = true } +biome_rowan = { workspace = true } +enumflags2 = { workspace = true } +rustc-hash = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"], optional = true } +tracing = { workspace = true } [features] -serde = ["dep:serde", "dep:schemars", "dep:biome_deserialize", "dep:biome_deserialize_macros"] +serde = [ + "dep:serde", + "dep:schemars", + "dep:biome_deserialize", + "dep:biome_deserialize_macros", +] [lints] workspace = true diff --git a/crates/biome_aria/Cargo.toml b/crates/biome_aria/Cargo.toml index 48c572d76bad..ac625958fa13 100644 --- a/crates/biome_aria/Cargo.toml +++ b/crates/biome_aria/Cargo.toml @@ -1,20 +1,20 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to create ARIA query for biome_js_analyze" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_aria" +description = "Utilities to create ARIA query for biome_js_analyze" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_aria" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_aria_metadata = { workspace = true } -rustc-hash = { workspace = true } +rustc-hash = { workspace = true } [lints] workspace = true diff --git a/crates/biome_aria_metadata/Cargo.toml b/crates/biome_aria_metadata/Cargo.toml index e74189eeebce..8e4a3134bffd 100644 --- a/crates/biome_aria_metadata/Cargo.toml +++ b/crates/biome_aria_metadata/Cargo.toml @@ -1,30 +1,29 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Metadata about ARIA properties and ARIA roles" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_aria_metadata" +description = "Metadata about ARIA properties and ARIA roles" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_aria_metadata" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] - [build-dependencies] -biome_deserialize = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_string_case = { workspace = true } -prettyplease = "0.2.25" -proc-macro2 = { workspace = true, features = ["span-locations"] } -quote = { workspace = true } -serde = { workspace = true } -serde_json = { workspace = true } -syn = "2.0.76" +biome_string_case = { workspace = true } +prettyplease = "0.2.25" +proc-macro2 = { workspace = true, features = ["span-locations"] } +quote = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } +syn = "2.0.76" [lints] workspace = true diff --git a/crates/biome_cli/Cargo.toml b/crates/biome_cli/Cargo.toml index 7a5ba96481f4..272fc292bda8 100644 --- a/crates/biome_cli/Cargo.toml +++ b/crates/biome_cli/Cargo.toml @@ -1,15 +1,15 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's command line interface" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_cli" -publish = false +description = "Biome's command line interface" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_cli" +publish = false repository.workspace = true -version = "0.0.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,47 +18,58 @@ name = "biome" path = "src/main.rs" [dependencies] -anyhow = { workspace = true } -biome_analyze = { workspace = true } -biome_configuration = { workspace = true } -biome_console = { workspace = true } -biome_deserialize = { workspace = true } +anyhow = { workspace = true } +biome_analyze = { workspace = true } +biome_configuration = { workspace = true } +biome_console = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_flags = { workspace = true } -biome_formatter = { workspace = true } -biome_fs = { workspace = true } -biome_js_analyze = { workspace = true } -biome_js_formatter = { workspace = true } -biome_json_formatter = { workspace = true } -biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } -biome_lsp = { workspace = true } -biome_migrate = { workspace = true } -biome_rowan = { workspace = true } -biome_service = { workspace = true } -biome_text_edit = { workspace = true } -bpaf = { workspace = true, features = ["bright-color"] } -crossbeam = { workspace = true } -dashmap = { workspace = true } -hdrhistogram = { version = "7.5.4", default-features = false } -indexmap = { workspace = true } -path-absolutize = { version = "3.1.1", optional = false, features = ["use_unix_paths_on_wasm"] } -quick-junit = "0.5.0" -rayon = { workspace = true } -regex = { workspace = true } -rustc-hash = { workspace = true } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -smallvec = { workspace = true } -tokio = { workspace = true, features = ["io-std", "io-util", "net", "time", "rt", "sync", "rt-multi-thread", "macros"] } -tracing = { workspace = true } -tracing-appender = "0.2.3" -tracing-subscriber = { workspace = true, features = ["env-filter", "json"] } -tracing-tree = "0.4.0" +biome_diagnostics = { workspace = true } +biome_flags = { workspace = true } +biome_formatter = { workspace = true } +biome_fs = { workspace = true } +biome_js_analyze = { workspace = true } +biome_js_formatter = { workspace = true } +biome_json_formatter = { workspace = true } +biome_json_parser = { workspace = true } +biome_json_syntax = { workspace = true } +biome_lsp = { workspace = true } +biome_migrate = { workspace = true } +biome_rowan = { workspace = true } +biome_service = { workspace = true } +biome_text_edit = { workspace = true } +bpaf = { workspace = true, features = ["bright-color"] } +crossbeam = { workspace = true } +dashmap = { workspace = true } +hdrhistogram = { version = "7.5.4", default-features = false } +indexmap = { workspace = true } +path-absolutize = { version = "3.1.1", optional = false, features = [ + "use_unix_paths_on_wasm", +] } +quick-junit = "0.5.0" +rayon = { workspace = true } +regex = { workspace = true } +rustc-hash = { workspace = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +smallvec = { workspace = true } +tokio = { workspace = true, features = [ + "io-std", + "io-util", + "net", + "time", + "rt", + "sync", + "rt-multi-thread", + "macros", +] } +tracing = { workspace = true } +tracing-appender = "0.2.3" +tracing-subscriber = { workspace = true, features = ["env-filter", "json"] } +tracing-tree = "0.4.0" [target.'cfg(unix)'.dependencies] -libc = "0.2.161" +libc = "0.2.161" tokio = { workspace = true, features = ["process"] } [target.'cfg(windows)'.dependencies] @@ -68,16 +79,16 @@ mimalloc = "0.1.43" tikv-jemallocator = "0.6.0" [dev-dependencies] -biome_css_formatter = { workspace = true } -biome_js_formatter = { workspace = true } +biome_css_formatter = { workspace = true } +biome_js_formatter = { workspace = true } biome_json_formatter = { workspace = true } -biome_json_parser = { workspace = true } -insta = { workspace = true } -regex = { workspace = true } -tokio = { workspace = true, features = ["io-util"] } +biome_json_parser = { workspace = true } +insta = { workspace = true } +regex = { workspace = true } +tokio = { workspace = true, features = ["io-util"] } [features] -docgen = ["bpaf/docgen"] +docgen = ["bpaf/docgen"] experimental-html = ["biome_service/experimental-html"] [lints] diff --git a/crates/biome_configuration/Cargo.toml b/crates/biome_configuration/Cargo.toml index ee5241a0bb84..c65852d1b22e 100644 --- a/crates/biome_configuration/Cargo.toml +++ b/crates/biome_configuration/Cargo.toml @@ -1,57 +1,57 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome Configuration" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_configuration" +description = "Biome Configuration" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_configuration" repository.workspace = true -version = "0.0.1" +version = "0.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_analyze = { workspace = true, features = ["serde"] } -biome_console = { workspace = true } -biome_css_analyze = { workspace = true } -biome_css_syntax = { workspace = true } -biome_deserialize = { workspace = true } +biome_analyze = { workspace = true, features = ["serde"] } +biome_console = { workspace = true } +biome_css_analyze = { workspace = true } +biome_css_syntax = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_flags = { workspace = true } -biome_formatter = { workspace = true, features = ["serde"] } -biome_graphql_analyze = { workspace = true } -biome_graphql_syntax = { workspace = true } -biome_html_syntax = { workspace = true } -biome_js_analyze = { workspace = true } -biome_js_formatter = { workspace = true, features = ["serde"] } -biome_js_syntax = { workspace = true, features = ["schema"] } -biome_json_analyze = { workspace = true } -biome_json_formatter = { workspace = true, features = ["serde"] } -biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } -biome_rowan = { workspace = true, features = ["serde"] } -bpaf = { workspace = true } -indexmap = { workspace = true, features = ["serde"] } -oxc_resolver = { workspace = true } -rustc-hash = { workspace = true } -schemars = { workspace = true, features = ["indexmap1"], optional = true } -serde = { workspace = true, features = ["derive"] } -serde_ini = { workspace = true } -serde_json = { workspace = true, features = ["raw_value"] } +biome_diagnostics = { workspace = true } +biome_flags = { workspace = true } +biome_formatter = { workspace = true, features = ["serde"] } +biome_graphql_analyze = { workspace = true } +biome_graphql_syntax = { workspace = true } +biome_html_syntax = { workspace = true } +biome_js_analyze = { workspace = true } +biome_js_formatter = { workspace = true, features = ["serde"] } +biome_js_syntax = { workspace = true, features = ["schema"] } +biome_json_analyze = { workspace = true } +biome_json_formatter = { workspace = true, features = ["serde"] } +biome_json_parser = { workspace = true } +biome_json_syntax = { workspace = true } +biome_rowan = { workspace = true, features = ["serde"] } +bpaf = { workspace = true } +indexmap = { workspace = true, features = ["serde"] } +oxc_resolver = { workspace = true } +rustc-hash = { workspace = true } +schemars = { workspace = true, features = ["indexmap1"], optional = true } +serde = { workspace = true, features = ["derive"] } +serde_ini = { workspace = true } +serde_json = { workspace = true, features = ["raw_value"] } [features] schema = [ - "dep:schemars", - "biome_js_analyze/schema", - "biome_css_analyze/schema", - "biome_formatter/serde", - "biome_json_syntax/schema", - "biome_css_syntax/schema", - "biome_graphql_syntax/schema", - "biome_html_syntax/schema", + "dep:schemars", + "biome_js_analyze/schema", + "biome_css_analyze/schema", + "biome_formatter/serde", + "biome_json_syntax/schema", + "biome_css_syntax/schema", + "biome_graphql_syntax/schema", + "biome_html_syntax/schema", ] [dev-dependencies] diff --git a/crates/biome_console/Cargo.toml b/crates/biome_console/Cargo.toml index 590378f69a63..1fc221f98469 100644 --- a/crates/biome_console/Cargo.toml +++ b/crates/biome_console/Cargo.toml @@ -1,25 +1,25 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to print messages (formatted with biome_markup) and diagnostics" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_console" +description = "Utilities to print messages (formatted with biome_markup) and diagnostics" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_console" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_markup = { workspace = true } -biome_text_size = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, optional = true, features = ["derive"] } -termcolor = { workspace = true } +biome_markup = { workspace = true } +biome_text_size = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, optional = true, features = ["derive"] } +termcolor = { workspace = true } unicode-segmentation = "1.12.0" -unicode-width = { workspace = true } +unicode-width = { workspace = true } [dev-dependencies] trybuild = "1.0.101" diff --git a/crates/biome_control_flow/Cargo.toml b/crates/biome_control_flow/Cargo.toml index 90abce590c80..9d1c3cd91947 100644 --- a/crates/biome_control_flow/Cargo.toml +++ b/crates/biome_control_flow/Cargo.toml @@ -1,20 +1,20 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to build control flow graph for biome_js_analyze" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_control_flow" +description = "Utilities to build control flow graph for biome_js_analyze" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_control_flow" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_rowan = { workspace = true } -rustc-hash = { workspace = true } +rustc-hash = { workspace = true } [lints] workspace = true diff --git a/crates/biome_css_analyze/Cargo.toml b/crates/biome_css_analyze/Cargo.toml index b00bb6bace9f..68f4418fab4d 100644 --- a/crates/biome_css_analyze/Cargo.toml +++ b/crates/biome_css_analyze/Cargo.toml @@ -1,38 +1,38 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's CSS linter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_css_analyze" +description = "Biome's CSS linter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_css_analyze" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_analyze = { workspace = true } -biome_console = { workspace = true } -biome_css_semantic = { workspace = true } -biome_css_syntax = { workspace = true } -biome_deserialize = { workspace = true } +biome_analyze = { workspace = true } +biome_console = { workspace = true } +biome_css_semantic = { workspace = true } +biome_css_syntax = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_rowan = { workspace = true } -biome_string_case = { workspace = true } -biome_suppression = { workspace = true } -regex = { workspace = true } -rustc-hash = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +biome_diagnostics = { workspace = true } +biome_rowan = { workspace = true } +biome_string_case = { workspace = true } +biome_suppression = { workspace = true } +regex = { workspace = true } +rustc-hash = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [dev-dependencies] biome_css_parser = { path = "../biome_css_parser" } biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true, features = ["glob"] } -tests_macros = { path = "../tests_macros" } +insta = { workspace = true, features = ["glob"] } +tests_macros = { path = "../tests_macros" } [features] schema = ["schemars", "biome_deserialize/schema"] diff --git a/crates/biome_css_factory/Cargo.toml b/crates/biome_css_factory/Cargo.toml index 33bf2e6f2366..1210bd1e8643 100644 --- a/crates/biome_css_factory/Cargo.toml +++ b/crates/biome_css_factory/Cargo.toml @@ -1,20 +1,20 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to create CSS AST for biome_css_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_css_factory" +description = "Utilities to create CSS AST for biome_css_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_css_factory" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_css_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_css_formatter/Cargo.toml b/crates/biome_css_formatter/Cargo.toml index c55b7d9a4489..16a7742e5424 100644 --- a/crates/biome_css_formatter/Cargo.toml +++ b/crates/biome_css_formatter/Cargo.toml @@ -1,36 +1,36 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's CSS formatter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_css_formatter" +description = "Biome's CSS formatter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_css_formatter" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_css_syntax = { workspace = true } +biome_css_syntax = { workspace = true } biome_diagnostics = { workspace = true } -biome_formatter = { workspace = true } -biome_rowan = { workspace = true } +biome_formatter = { workspace = true } +biome_rowan = { workspace = true } biome_string_case = { workspace = true } biome_suppression = { workspace = true } [dev-dependencies] -biome_configuration = { path = "../biome_configuration" } -biome_css_parser = { path = "../biome_css_parser" } +biome_configuration = { path = "../biome_configuration" } +biome_css_parser = { path = "../biome_css_parser" } biome_formatter_test = { path = "../biome_formatter_test" } -biome_fs = { path = "../biome_fs" } -biome_parser = { path = "../biome_parser" } -biome_service = { path = "../biome_service" } -countme = { workspace = true, features = ["enable"] } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -tests_macros = { path = "../tests_macros" } +biome_fs = { path = "../biome_fs" } +biome_parser = { path = "../biome_parser" } +biome_service = { path = "../biome_service" } +countme = { workspace = true, features = ["enable"] } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +tests_macros = { path = "../tests_macros" } # cargo-workspaces metadata [package.metadata.workspaces] diff --git a/crates/biome_css_parser/Cargo.toml b/crates/biome_css_parser/Cargo.toml index f89ebcbc2fc6..4f8333341d8d 100644 --- a/crates/biome_css_parser/Cargo.toml +++ b/crates/biome_css_parser/Cargo.toml @@ -1,35 +1,35 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's CSS parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_css_parser" +description = "Biome's CSS parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_css_parser" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] -biome_console = { workspace = true } -biome_css_factory = { workspace = true } -biome_css_syntax = { workspace = true } -biome_diagnostics = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } +biome_console = { workspace = true } +biome_css_factory = { workspace = true } +biome_css_syntax = { workspace = true } +biome_diagnostics = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } biome_unicode_table = { workspace = true } -tracing = { workspace = true } +tracing = { workspace = true } [dev-dependencies] biome_configuration = { path = "../biome_configuration" } -biome_deserialize = { path = "../biome_deserialize" } -biome_fs = { path = "../biome_fs" } -biome_service = { path = "../biome_service" } -biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true } -quickcheck = { workspace = true } -quickcheck_macros = { workspace = true } -tests_macros = { path = "../tests_macros" } +biome_deserialize = { path = "../biome_deserialize" } +biome_fs = { path = "../biome_fs" } +biome_service = { path = "../biome_service" } +biome_test_utils = { path = "../biome_test_utils" } +insta = { workspace = true } +quickcheck = { workspace = true } +quickcheck_macros = { workspace = true } +tests_macros = { path = "../tests_macros" } [lints] workspace = true diff --git a/crates/biome_css_semantic/Cargo.toml b/crates/biome_css_semantic/Cargo.toml index 0ad329e17e3a..5b5ac8e9fb0f 100644 --- a/crates/biome_css_semantic/Cargo.toml +++ b/crates/biome_css_semantic/Cargo.toml @@ -1,20 +1,19 @@ - [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's semantic model for CSS" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_css_semantic" +description = "Biome's semantic model for CSS" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_css_semantic" repository.workspace = true -version = "0.0.0" +version = "0.0.0" [dependencies] biome_css_syntax = { workspace = true } -biome_rowan = { workspace = true } -rustc-hash = { workspace = true } +biome_rowan = { workspace = true } +rustc-hash = { workspace = true } [dev-dependencies] biome_css_parser = { path = "../biome_css_parser" } diff --git a/crates/biome_css_syntax/Cargo.toml b/crates/biome_css_syntax/Cargo.toml index 24ff482ba22b..58e84a02ab16 100644 --- a/crates/biome_css_syntax/Cargo.toml +++ b/crates/biome_css_syntax/Cargo.toml @@ -1,22 +1,22 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_css_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_css_syntax" +description = "SyntaxKind and common rowan definitions for biome_css_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_css_syntax" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_rowan = { workspace = true, features = ["serde"] } +biome_rowan = { workspace = true, features = ["serde"] } biome_string_case = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [features] schema = ["schemars", "biome_rowan/serde"] diff --git a/crates/biome_deserialize/Cargo.toml b/crates/biome_deserialize/Cargo.toml index 9831ca6fb2c3..873c56158728 100644 --- a/crates/biome_deserialize/Cargo.toml +++ b/crates/biome_deserialize/Cargo.toml @@ -1,32 +1,32 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to deserialize values" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_deserialize" +description = "Utilities to deserialize values" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_deserialize" repository.workspace = true -version = "0.6.0" +version = "0.6.0" [dependencies] -biome_console = { workspace = true } +biome_console = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } -biome_rowan = { workspace = true } -enumflags2 = { workspace = true } -indexmap = { workspace = true, features = ["serde"] } -schemars = { workspace = true, optional = true } -serde = { workspace = true } -serde_json = { workspace = true, optional = true } -smallvec = { workspace = true, optional = true } +biome_diagnostics = { workspace = true } +biome_json_parser = { workspace = true } +biome_json_syntax = { workspace = true } +biome_rowan = { workspace = true } +enumflags2 = { workspace = true } +indexmap = { workspace = true, features = ["serde"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true } +serde_json = { workspace = true, optional = true } +smallvec = { workspace = true, optional = true } [features] -schema = ["schemars", "schemars/indexmap"] -serde = ["serde_json"] +schema = ["schemars", "schemars/indexmap"] +serde = ["serde_json"] smallvec = ["dep:smallvec"] [lints] diff --git a/crates/biome_deserialize_macros/Cargo.toml b/crates/biome_deserialize_macros/Cargo.toml index 1b961c8bdc3a..6ebad79bc696 100644 --- a/crates/biome_deserialize_macros/Cargo.toml +++ b/crates/biome_deserialize_macros/Cargo.toml @@ -1,24 +1,24 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Macros to help implement deserializable types in Biome" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_deserialize_macros" +description = "Macros to help implement deserializable types in Biome" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_deserialize_macros" repository.workspace = true -version = "0.6.0" +version = "0.6.0" [lib] proc-macro = true [dependencies] biome_string_case = { workspace = true } -proc-macro-error = { version = "1.0.4", default-features = false } -proc-macro2 = { workspace = true } -quote = "1.0.14" -syn = { workspace = true, features = ["extra-traits"] } +proc-macro-error = { version = "1.0.4", default-features = false } +proc-macro2 = { workspace = true } +quote = "1.0.14" +syn = { workspace = true, features = ["extra-traits"] } [lints] workspace = true diff --git a/crates/biome_diagnostics/Cargo.toml b/crates/biome_diagnostics/Cargo.toml index bf223ff8d9a1..d19a5b40f87b 100644 --- a/crates/biome_diagnostics/Cargo.toml +++ b/crates/biome_diagnostics/Cargo.toml @@ -1,14 +1,14 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's shared infrastructure to implement reporting pretty error and diagnostics" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_diagnostics" +description = "Biome's shared infrastructure to implement reporting pretty error and diagnostics" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_diagnostics" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [[example]] name = "cli" @@ -27,30 +27,34 @@ name = "serde" test = true [dependencies] -backtrace = "0.3.74" -biome_console = { workspace = true, features = ["serde_markup"] } +backtrace = "0.3.74" +biome_console = { workspace = true, features = ["serde_markup"] } biome_diagnostics_categories = { workspace = true, features = ["serde"] } -biome_diagnostics_macros = { workspace = true } -biome_rowan = { workspace = true } -biome_text_edit = { workspace = true } -biome_text_size = { workspace = true } -bpaf = { workspace = true } -enumflags2 = { workspace = true } -oxc_resolver = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } -serde_ini = { workspace = true } -serde_json = { workspace = true } -termcolor = { workspace = true } -unicode-width = { workspace = true } +biome_diagnostics_macros = { workspace = true } +biome_rowan = { workspace = true } +biome_text_edit = { workspace = true } +biome_text_size = { workspace = true } +bpaf = { workspace = true } +enumflags2 = { workspace = true } +oxc_resolver = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } +serde_ini = { workspace = true } +serde_json = { workspace = true } +termcolor = { workspace = true } +unicode-width = { workspace = true } [features] -schema = ["schemars", "biome_text_edit/schemars", "biome_diagnostics_categories/schemars"] +schema = [ + "schemars", + "biome_text_edit/schemars", + "biome_diagnostics_categories/schemars", +] [dev-dependencies] -insta = { workspace = true } +insta = { workspace = true } serde_json = { workspace = true } -trybuild = "1.0.101" +trybuild = "1.0.101" [lints] workspace = true diff --git a/crates/biome_diagnostics_categories/Cargo.toml b/crates/biome_diagnostics_categories/Cargo.toml index 6c254f46a6ef..8e5053ec42f0 100644 --- a/crates/biome_diagnostics_categories/Cargo.toml +++ b/crates/biome_diagnostics_categories/Cargo.toml @@ -1,18 +1,18 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Diagnostic categories for biome_diagnostics" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_diagnostics_categories" +description = "Diagnostic categories for biome_diagnostics" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_diagnostics_categories" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] schemars = { workspace = true, optional = true } -serde = { workspace = true, optional = true } +serde = { workspace = true, optional = true } [build-dependencies] quote = "1.0.14" diff --git a/crates/biome_diagnostics_macros/Cargo.toml b/crates/biome_diagnostics_macros/Cargo.toml index a4a56009fddc..19aa995606b7 100644 --- a/crates/biome_diagnostics_macros/Cargo.toml +++ b/crates/biome_diagnostics_macros/Cargo.toml @@ -1,23 +1,23 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Macros to implement Biome's diagnostics" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_diagnostics_macros" +description = "Macros to implement Biome's diagnostics" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_diagnostics_macros" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [lib] proc-macro = true [dependencies] proc-macro-error = { version = "1.0.4", default-features = false } -proc-macro2 = { workspace = true } -quote = { workspace = true } -syn = { workspace = true } +proc-macro2 = { workspace = true } +quote = { workspace = true } +syn = { workspace = true } [lints] workspace = true diff --git a/crates/biome_flags/Cargo.toml b/crates/biome_flags/Cargo.toml index 2bdf6f937060..e479e3c3c548 100644 --- a/crates/biome_flags/Cargo.toml +++ b/crates/biome_flags/Cargo.toml @@ -1,16 +1,15 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to implement simple feature flags" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_flags" -publish = false +description = "Utilities to implement simple feature flags" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_flags" +publish = false repository.workspace = true -version = "0.0.0" - +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/biome_formatter/Cargo.toml b/crates/biome_formatter/Cargo.toml index a8ba198f1d6c..583841967568 100644 --- a/crates/biome_formatter/Cargo.toml +++ b/crates/biome_formatter/Cargo.toml @@ -1,39 +1,38 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's formatter shared infrastructure" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_formatter" +description = "Biome's formatter shared infrastructure" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_formatter" repository.workspace = true -version = "0.5.7" - +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_console = { workspace = true } -biome_deserialize = { workspace = true } +biome_console = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_rowan = { workspace = true } -biome_string_case = { workspace = true } -cfg-if = "1.0.0" -countme = { workspace = true } -drop_bomb = "0.1.5" -indexmap = { workspace = true } -rustc-hash = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"], optional = true } -tracing = { workspace = true } -unicode-width = { workspace = true } +biome_diagnostics = { workspace = true } +biome_rowan = { workspace = true } +biome_string_case = { workspace = true } +cfg-if = "1.0.0" +countme = { workspace = true } +drop_bomb = "0.1.5" +indexmap = { workspace = true } +rustc-hash = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"], optional = true } +tracing = { workspace = true } +unicode-width = { workspace = true } [dev-dependencies] biome_js_parser = { path = "../biome_js_parser" } biome_js_syntax = { path = "../biome_js_syntax" } -insta = { workspace = true } +insta = { workspace = true } [features] serde = ["dep:serde", "schemars", "biome_rowan/serde"] diff --git a/crates/biome_formatter_test/Cargo.toml b/crates/biome_formatter_test/Cargo.toml index 809d6e91f4d1..e61154d02174 100644 --- a/crates/biome_formatter_test/Cargo.toml +++ b/crates/biome_formatter_test/Cargo.toml @@ -1,33 +1,33 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's formatter test shared infrastructure" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_formatter_test" -publish = false +description = "Biome's formatter test shared infrastructure" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_formatter_test" +publish = false repository.workspace = true -version = "0.0.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_configuration = { workspace = true } -biome_console = { workspace = true } -biome_deserialize = { workspace = true } -biome_diagnostics = { workspace = true } -biome_formatter = { workspace = true } -biome_fs = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } -biome_service = { workspace = true } -insta = { workspace = true, features = ["glob"] } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -similar = { workspace = true } -similar-asserts = "1.6.0" +biome_console = { workspace = true } +biome_deserialize = { workspace = true } +biome_diagnostics = { workspace = true } +biome_formatter = { workspace = true } +biome_fs = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } +biome_service = { workspace = true } +insta = { workspace = true, features = ["glob"] } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +similar = { workspace = true } +similar-asserts = "1.6.0" [dev-dependencies] diff --git a/crates/biome_fs/Cargo.toml b/crates/biome_fs/Cargo.toml index 03c6bb9d518f..3ecb9465fe81 100644 --- a/crates/biome_fs/Cargo.toml +++ b/crates/biome_fs/Cargo.toml @@ -1,36 +1,35 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "A small wrapper around std::path::PathBuf contains additional information and convenient methods" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_fs" +description = "A small wrapper around std::path::PathBuf contains additional information and convenient methods" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_fs" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_diagnostics = { workspace = true } -crossbeam = { workspace = true } -directories = "5.0.1" -enumflags2 = { workspace = true, features = ["serde"] } -indexmap = { workspace = true } -oxc_resolver = { workspace = true } -parking_lot = { version = "0.12.3", features = ["arc_lock"] } -rayon = { workspace = true } -rustc-hash = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true } -smallvec = { workspace = true } -tracing = { workspace = true } +crossbeam = { workspace = true } +directories = "5.0.1" +enumflags2 = { workspace = true, features = ["serde"] } +indexmap = { workspace = true } +oxc_resolver = { workspace = true } +parking_lot = { version = "0.12.3", features = ["arc_lock"] } +rayon = { workspace = true } +rustc-hash = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true } +smallvec = { workspace = true } +tracing = { workspace = true } [dev-dependencies] serde_json = { workspace = true } - [features] serde = ["schemars", "biome_diagnostics/schema"] diff --git a/crates/biome_graphql_analyze/Cargo.toml b/crates/biome_graphql_analyze/Cargo.toml index 80e1466c9237..a6b22cdc7b7c 100644 --- a/crates/biome_graphql_analyze/Cargo.toml +++ b/crates/biome_graphql_analyze/Cargo.toml @@ -1,34 +1,34 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's GraphQL linter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_graphql_analyze" +description = "Biome's GraphQL linter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_graphql_analyze" repository.workspace = true -version = "0.0.1" +version = "0.0.1" [dependencies] -biome_analyze = { workspace = true } -biome_console = { workspace = true } -biome_deserialize = { workspace = true } +biome_analyze = { workspace = true } +biome_console = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_graphql_factory = { workspace = true } -biome_graphql_syntax = { workspace = true } -biome_rowan = { workspace = true } -biome_string_case = { workspace = true } -biome_suppression = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +biome_diagnostics = { workspace = true } +biome_graphql_factory = { workspace = true } +biome_graphql_syntax = { workspace = true } +biome_rowan = { workspace = true } +biome_string_case = { workspace = true } +biome_suppression = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [dev-dependencies] biome_graphql_parser = { path = "../biome_graphql_parser" } -biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true, features = ["glob"] } -tests_macros = { path = "../tests_macros" } +biome_test_utils = { path = "../biome_test_utils" } +insta = { workspace = true, features = ["glob"] } +tests_macros = { path = "../tests_macros" } [features] schema = ["schemars", "biome_deserialize/schema"] diff --git a/crates/biome_graphql_factory/Cargo.toml b/crates/biome_graphql_factory/Cargo.toml index e9db5175f272..daa15d3e62ea 100644 --- a/crates/biome_graphql_factory/Cargo.toml +++ b/crates/biome_graphql_factory/Cargo.toml @@ -1,20 +1,20 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to create GraphQL AST for biome_graphql_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_graphql_factory" +description = "Utilities to create GraphQL AST for biome_graphql_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_graphql_factory" repository.workspace = true -version = "0.1.0" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_graphql_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_graphql_formatter/Cargo.toml b/crates/biome_graphql_formatter/Cargo.toml index 3c281e18a2e4..34b34d5cffb1 100644 --- a/crates/biome_graphql_formatter/Cargo.toml +++ b/crates/biome_graphql_formatter/Cargo.toml @@ -1,35 +1,35 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's GraphQL formatter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_graphql_formatter" +description = "Biome's GraphQL formatter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_graphql_formatter" repository.workspace = true -version = "0.1.0" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_diagnostics = { workspace = true } -biome_formatter = { workspace = true } +biome_diagnostics = { workspace = true } +biome_formatter = { workspace = true } biome_graphql_syntax = { workspace = true } -biome_rowan = { workspace = true } -biome_suppression = { workspace = true } +biome_rowan = { workspace = true } +biome_suppression = { workspace = true } [dev-dependencies] -biome_configuration = { path = "../biome_configuration" } +biome_configuration = { path = "../biome_configuration" } biome_formatter_test = { path = "../biome_formatter_test" } -biome_fs = { path = "../biome_fs" } +biome_fs = { path = "../biome_fs" } biome_graphql_parser = { path = "../biome_graphql_parser" } -biome_parser = { path = "../biome_parser" } -biome_service = { path = "../biome_service" } -countme = { workspace = true, features = ["enable"] } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -tests_macros = { path = "../tests_macros" } +biome_parser = { path = "../biome_parser" } +biome_service = { path = "../biome_service" } +countme = { workspace = true, features = ["enable"] } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +tests_macros = { path = "../tests_macros" } # cargo-workspaces metadata [package.metadata.workspaces] diff --git a/crates/biome_graphql_parser/Cargo.toml b/crates/biome_graphql_parser/Cargo.toml index 85079447ec44..8310cd6e2c4f 100644 --- a/crates/biome_graphql_parser/Cargo.toml +++ b/crates/biome_graphql_parser/Cargo.toml @@ -1,32 +1,32 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_graphql_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_graphql_parser" repository.workspace = true -version = "0.1.0" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } biome_graphql_factory = { workspace = true } -biome_graphql_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } -biome_unicode_table = { workspace = true } -tracing = { workspace = true } -unicode-bom = { workspace = true } +biome_graphql_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } +biome_unicode_table = { workspace = true } +tracing = { workspace = true } +unicode-bom = { workspace = true } [dev-dependencies] -insta = { workspace = true } -quickcheck = { workspace = true } +insta = { workspace = true } +quickcheck = { workspace = true } quickcheck_macros = { workspace = true } -tests_macros = { workspace = true } +tests_macros = { workspace = true } [lints] workspace = true diff --git a/crates/biome_graphql_semantic/Cargo.toml b/crates/biome_graphql_semantic/Cargo.toml index ba75ef4c30b5..e013be43ed94 100644 --- a/crates/biome_graphql_semantic/Cargo.toml +++ b/crates/biome_graphql_semantic/Cargo.toml @@ -1,23 +1,22 @@ - [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's semantic model for GraphQL" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_graphql_semantic" +description = "Biome's semantic model for GraphQL" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_graphql_semantic" repository.workspace = true -version = "0.0.0" +version = "0.0.0" [lints] workspace = true [dependencies] biome_graphql_syntax = { workspace = true } -biome_rowan = { workspace = true } -rustc-hash = { workspace = true } +biome_rowan = { workspace = true } +rustc-hash = { workspace = true } [dev-dependencies] biome_graphql_parser = { path = "../biome_graphql_parser" } diff --git a/crates/biome_graphql_syntax/Cargo.toml b/crates/biome_graphql_syntax/Cargo.toml index 56dadbb3db5e..f38ec22315c9 100644 --- a/crates/biome_graphql_syntax/Cargo.toml +++ b/crates/biome_graphql_syntax/Cargo.toml @@ -1,22 +1,22 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_graphql_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_graphql_syntax" +description = "SyntaxKind and common rowan definitions for biome_graphql_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_graphql_syntax" repository.workspace = true -version = "0.1.0" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_rowan = { workspace = true, features = ["serde"] } +biome_rowan = { workspace = true, features = ["serde"] } biome_string_case = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [features] schema = ["schemars", "biome_rowan/serde"] diff --git a/crates/biome_grit_factory/Cargo.toml b/crates/biome_grit_factory/Cargo.toml index 6f8db316e0af..39e2d769e175 100644 --- a/crates/biome_grit_factory/Cargo.toml +++ b/crates/biome_grit_factory/Cargo.toml @@ -1,18 +1,18 @@ [package] -authors.workspace = true -description = "Utilities to create GritQL AST for biome_grit_parser" -documentation = "https://docs.rs/biome_grit_factory" -edition.workspace = true -license.workspace = true -name = "biome_grit_factory" +authors.workspace = true +description = "Utilities to create GritQL AST for biome_grit_parser" +documentation = "https://docs.rs/biome_grit_factory" +edition.workspace = true +license.workspace = true +name = "biome_grit_factory" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_grit_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_grit_formatter/Cargo.toml b/crates/biome_grit_formatter/Cargo.toml index 0e9f3c2c0504..c44c18ac5869 100644 --- a/crates/biome_grit_formatter/Cargo.toml +++ b/crates/biome_grit_formatter/Cargo.toml @@ -1,34 +1,34 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's GritQL formatter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_grit_formatter" +description = "Biome's GritQL formatter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_grit_formatter" repository.workspace = true -version = "0.0.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_formatter = { workspace = true } +biome_formatter = { workspace = true } biome_grit_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [dev-dependencies] -biome_configuration = { path = "../biome_configuration" } +biome_configuration = { path = "../biome_configuration" } biome_formatter_test = { path = "../biome_formatter_test" } -biome_fs = { path = "../biome_fs" } -biome_grit_factory = { path = "../biome_grit_factory" } -biome_grit_parser = { path = "../biome_grit_parser" } -biome_parser = { path = "../biome_parser" } -biome_service = { path = "../biome_service" } -countme = { workspace = true, features = ["enable"] } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -tests_macros = { path = "../tests_macros" } +biome_fs = { path = "../biome_fs" } +biome_grit_factory = { path = "../biome_grit_factory" } +biome_grit_parser = { path = "../biome_grit_parser" } +biome_parser = { path = "../biome_parser" } +biome_service = { path = "../biome_service" } +countme = { workspace = true, features = ["enable"] } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +tests_macros = { path = "../tests_macros" } # cargo-workspaces metadata [package.metadata.workspaces] independent = true diff --git a/crates/biome_grit_parser/Cargo.toml b/crates/biome_grit_parser/Cargo.toml index 43b2f5cbdcfb..56f2e8b218b3 100644 --- a/crates/biome_grit_parser/Cargo.toml +++ b/crates/biome_grit_parser/Cargo.toml @@ -1,34 +1,34 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's GritQL parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_grit_parser" +description = "Biome's GritQL parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_grit_parser" repository.workspace = true -version = "0.1.0" +version = "0.1.0" [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } biome_grit_factory = { workspace = true } -biome_grit_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -smallvec = { workspace = true } -tracing = { workspace = true } -unicode-bom = { workspace = true } +biome_grit_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +smallvec = { workspace = true } +tracing = { workspace = true } +unicode-bom = { workspace = true } [dev-dependencies] -insta = { workspace = true } -quickcheck = { workspace = true } +insta = { workspace = true } +quickcheck = { workspace = true } quickcheck_macros = { workspace = true } -tests_macros = { workspace = true } +tests_macros = { workspace = true } [features] schemars = ["dep:schemars", "biome_grit_syntax/schema"] diff --git a/crates/biome_grit_patterns/Cargo.toml b/crates/biome_grit_patterns/Cargo.toml index 90460cbf845d..c725899e2f59 100644 --- a/crates/biome_grit_patterns/Cargo.toml +++ b/crates/biome_grit_patterns/Cargo.toml @@ -1,38 +1,40 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome implementing for matching Grit Patterns" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_grit_patterns" -publish = false +description = "Biome implementing for matching Grit Patterns" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_grit_patterns" +publish = false repository.workspace = true -version = "0.0.1" +version = "0.0.1" [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_grit_parser = { workspace = true } -biome_grit_syntax = { workspace = true } -biome_js_parser = { workspace = true } -biome_js_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } -biome_string_case = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_grit_parser = { workspace = true } +biome_grit_syntax = { workspace = true } +biome_js_parser = { workspace = true } +biome_js_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } +biome_string_case = { workspace = true } grit-pattern-matcher = { version = "0.4" } -grit-util = { version = "0.4" } -path-absolutize = { version = "3.1.1", optional = false, features = ["use_unix_paths_on_wasm"] } -rand = { version = "0.8.5" } -regex = { workspace = true } -rustc-hash = { workspace = true } -serde = { workspace = true, features = ["derive"] } +grit-util = { version = "0.4" } +path-absolutize = { version = "3.1.1", optional = false, features = [ + "use_unix_paths_on_wasm", +] } +rand = { version = "0.8.5" } +regex = { workspace = true } +rustc-hash = { workspace = true } +serde = { workspace = true, features = ["derive"] } [dev-dependencies] biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true } -tests_macros = { path = "../tests_macros" } +insta = { workspace = true } +tests_macros = { path = "../tests_macros" } [lints] workspace = true diff --git a/crates/biome_grit_syntax/Cargo.toml b/crates/biome_grit_syntax/Cargo.toml index 8efb57b7e7d6..d8a9a23395c9 100644 --- a/crates/biome_grit_syntax/Cargo.toml +++ b/crates/biome_grit_syntax/Cargo.toml @@ -1,24 +1,23 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_grit_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_grit_syntax" +description = "SyntaxKind and common rowan definitions for biome_grit_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_grit_syntax" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] -biome_rowan = { workspace = true, features = ["serde"] } +biome_rowan = { workspace = true, features = ["serde"] } biome_string_case = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [features] schema = ["schemars", "biome_rowan/serde"] - [lints] workspace = true diff --git a/crates/biome_html_factory/Cargo.toml b/crates/biome_html_factory/Cargo.toml index dd6fb0bb443e..71263bab6c36 100644 --- a/crates/biome_html_factory/Cargo.toml +++ b/crates/biome_html_factory/Cargo.toml @@ -1,18 +1,18 @@ [package] -authors.workspace = true -description = "Utilities to create HTML AST for biome_html_parser" -documentation = "https://docs.rs/biome_html_factory" -edition.workspace = true -license.workspace = true -name = "biome_html_factory" +authors.workspace = true +description = "Utilities to create HTML AST for biome_html_parser" +documentation = "https://docs.rs/biome_html_factory" +edition.workspace = true +license.workspace = true +name = "biome_html_factory" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_html_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_html_formatter/Cargo.toml b/crates/biome_html_formatter/Cargo.toml index e54667e5ef74..26af386459aa 100644 --- a/crates/biome_html_formatter/Cargo.toml +++ b/crates/biome_html_formatter/Cargo.toml @@ -1,29 +1,29 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_html_formatter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_html_formatter" repository.workspace = true -version = "0.0.0" +version = "0.0.0" [dependencies] biome_diagnostics_categories = { workspace = true } -biome_formatter = { workspace = true } -biome_html_syntax = { workspace = true } -biome_rowan = { workspace = true } -biome_suppression = { workspace = true } +biome_formatter = { workspace = true } +biome_html_syntax = { workspace = true } +biome_rowan = { workspace = true } +biome_suppression = { workspace = true } [dev-dependencies] biome_formatter_test = { workspace = true } -biome_fs = { workspace = true } -biome_html_parser = { workspace = true } -biome_parser = { workspace = true } -biome_service = { workspace = true, features = ["experimental-html"] } -countme = { workspace = true, features = ["enable"] } -tests_macros = { workspace = true } +biome_fs = { workspace = true } +biome_html_parser = { workspace = true } +biome_parser = { workspace = true } +biome_service = { workspace = true, features = ["experimental-html"] } +countme = { workspace = true, features = ["enable"] } +tests_macros = { workspace = true } [lints] workspace = true diff --git a/crates/biome_html_parser/Cargo.toml b/crates/biome_html_parser/Cargo.toml index 0c0340054872..3634a263a740 100644 --- a/crates/biome_html_parser/Cargo.toml +++ b/crates/biome_html_parser/Cargo.toml @@ -1,32 +1,31 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_html_parser" +description = "" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_html_parser" repository.workspace = true -version = "0.0.1" +version = "0.0.1" [lints] workspace = true [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_html_factory = { workspace = true } -biome_html_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_html_factory = { workspace = true } +biome_html_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } biome_unicode_table = { workspace = true } -tracing = { workspace = true } - +tracing = { workspace = true } [dev-dependencies] -biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true } -quickcheck = { workspace = true } +biome_test_utils = { path = "../biome_test_utils" } +insta = { workspace = true } +quickcheck = { workspace = true } quickcheck_macros = { workspace = true } -tests_macros = { path = "../tests_macros" } +tests_macros = { path = "../tests_macros" } diff --git a/crates/biome_html_syntax/Cargo.toml b/crates/biome_html_syntax/Cargo.toml index 29cdaa13eb47..fad194915eff 100644 --- a/crates/biome_html_syntax/Cargo.toml +++ b/crates/biome_html_syntax/Cargo.toml @@ -1,22 +1,22 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_html_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_html_syntax" +description = "SyntaxKind and common rowan definitions for biome_html_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_html_syntax" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_rowan = { workspace = true, features = ["serde"] } +biome_rowan = { workspace = true, features = ["serde"] } biome_string_case = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [features] schema = ["schemars", "biome_rowan/serde"] diff --git a/crates/biome_js_analyze/Cargo.toml b/crates/biome_js_analyze/Cargo.toml index 3b334405c13c..bff5aab1cff3 100644 --- a/crates/biome_js_analyze/Cargo.toml +++ b/crates/biome_js_analyze/Cargo.toml @@ -1,48 +1,48 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's JavaScript linter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_js_analyze" +description = "Biome's JavaScript linter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_js_analyze" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] -biome_analyze = { workspace = true } -biome_aria = { workspace = true } -biome_aria_metadata = { workspace = true } -biome_console = { workspace = true } -biome_control_flow = { workspace = true } -biome_deserialize = { workspace = true, features = ["smallvec"] } +biome_analyze = { workspace = true } +biome_aria = { workspace = true } +biome_aria_metadata = { workspace = true } +biome_console = { workspace = true } +biome_control_flow = { workspace = true } +biome_deserialize = { workspace = true, features = ["smallvec"] } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_js_factory = { workspace = true } -biome_js_semantic = { workspace = true } -biome_js_syntax = { workspace = true } -biome_project = { workspace = true } -biome_rowan = { workspace = true } -biome_string_case = { workspace = true } -biome_suppression = { workspace = true } -biome_unicode_table = { workspace = true } -bitvec = "1.0.1" -enumflags2 = { workspace = true } -globset = { workspace = true } -natord = { workspace = true } -regex = { workspace = true } -roaring = "0.10.6" -rustc-hash = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } -smallvec = { workspace = true } +biome_diagnostics = { workspace = true } +biome_js_factory = { workspace = true } +biome_js_semantic = { workspace = true } +biome_js_syntax = { workspace = true } +biome_project = { workspace = true } +biome_rowan = { workspace = true } +biome_string_case = { workspace = true } +biome_suppression = { workspace = true } +biome_unicode_table = { workspace = true } +bitvec = "1.0.1" +enumflags2 = { workspace = true } +globset = { workspace = true } +natord = { workspace = true } +regex = { workspace = true } +roaring = "0.10.6" +rustc-hash = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } +smallvec = { workspace = true } [dev-dependencies] -biome_js_parser = { path = "../biome_js_parser", features = ["tests"] } +biome_js_parser = { path = "../biome_js_parser", features = ["tests"] } biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true, features = ["glob"] } -tests_macros = { path = "../tests_macros" } +insta = { workspace = true, features = ["glob"] } +tests_macros = { path = "../tests_macros" } [features] schema = ["schemars", "biome_deserialize/schema"] diff --git a/crates/biome_js_factory/Cargo.toml b/crates/biome_js_factory/Cargo.toml index a2108c056a3b..8364dca1ca24 100644 --- a/crates/biome_js_factory/Cargo.toml +++ b/crates/biome_js_factory/Cargo.toml @@ -1,18 +1,18 @@ [package] -authors.workspace = true -description = "Utilities to create JavaScript AST for biome_js_parser" -documentation = "https://docs.rs/biome_js_factory" -edition.workspace = true -license.workspace = true -name = "biome_js_factory" +authors.workspace = true +description = "Utilities to create JavaScript AST for biome_js_parser" +documentation = "https://docs.rs/biome_js_factory" +edition.workspace = true +license.workspace = true +name = "biome_js_factory" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_js_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_js_formatter/Cargo.toml b/crates/biome_js_formatter/Cargo.toml index 42016f709665..b52d0689eb6d 100644 --- a/crates/biome_js_formatter/Cargo.toml +++ b/crates/biome_js_formatter/Cargo.toml @@ -1,46 +1,46 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's JavaScript formatter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_js_formatter" +description = "Biome's JavaScript formatter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_js_formatter" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_deserialize = { workspace = true } -biome_deserialize_macros = { workspace = true } +biome_deserialize = { workspace = true } +biome_deserialize_macros = { workspace = true } biome_diagnostics_categories = { workspace = true } -biome_formatter = { workspace = true } -biome_js_factory = { workspace = true } -biome_js_syntax = { workspace = true } -biome_rowan = { workspace = true } -biome_string_case = { workspace = true } -biome_suppression = { workspace = true } -biome_text_size = { workspace = true } -biome_unicode_table = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"], optional = true } -smallvec = { workspace = true } -unicode-width = { workspace = true } +biome_formatter = { workspace = true } +biome_js_factory = { workspace = true } +biome_js_syntax = { workspace = true } +biome_rowan = { workspace = true } +biome_string_case = { workspace = true } +biome_suppression = { workspace = true } +biome_text_size = { workspace = true } +biome_unicode_table = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"], optional = true } +smallvec = { workspace = true } +unicode-width = { workspace = true } [dev-dependencies] biome_formatter_test = { path = "../biome_formatter_test" } -biome_fs = { path = "../biome_fs" } -biome_js_factory = { path = "../biome_js_factory" } -biome_js_parser = { path = "../biome_js_parser" } -biome_parser = { path = "../biome_parser" } -biome_service = { path = "../biome_service" } -countme = { workspace = true, features = ["enable"] } -quickcheck = { workspace = true } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -tests_macros = { path = "../tests_macros" } +biome_fs = { path = "../biome_fs" } +biome_js_factory = { path = "../biome_js_factory" } +biome_js_parser = { path = "../biome_js_parser" } +biome_parser = { path = "../biome_parser" } +biome_service = { path = "../biome_service" } +countme = { workspace = true, features = ["enable"] } +quickcheck = { workspace = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +tests_macros = { path = "../tests_macros" } [features] serde = ["dep:serde", "schemars"] diff --git a/crates/biome_js_parser/Cargo.toml b/crates/biome_js_parser/Cargo.toml index 7f81d63b66cc..a80fe58491f7 100644 --- a/crates/biome_js_parser/Cargo.toml +++ b/crates/biome_js_parser/Cargo.toml @@ -1,49 +1,48 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's JavaScript parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_js_parser" +description = "Biome's JavaScript parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_js_parser" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_js_factory = { workspace = true } -biome_js_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_js_factory = { workspace = true } +biome_js_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } biome_unicode_table = { workspace = true } -drop_bomb = "0.1.5" -enumflags2 = { workspace = true } -indexmap = { workspace = true } -rustc-hash = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -smallvec = { workspace = true } -tracing = { workspace = true } +drop_bomb = "0.1.5" +enumflags2 = { workspace = true } +indexmap = { workspace = true } +rustc-hash = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +smallvec = { workspace = true } +tracing = { workspace = true } [dev-dependencies] biome_configuration = { workspace = true } -biome_deserialize = { workspace = true } -biome_fs = { workspace = true } -biome_service = { workspace = true } -biome_test_utils = { workspace = true } -insta = { workspace = true } -quickcheck = { workspace = true } -quickcheck_macros = { workspace = true } -tests_macros = { path = "../tests_macros" } - +biome_deserialize = { workspace = true } +biome_fs = { workspace = true } +biome_service = { workspace = true } +biome_test_utils = { workspace = true } +insta = { workspace = true } +quickcheck = { workspace = true } +quickcheck_macros = { workspace = true } +tests_macros = { path = "../tests_macros" } [features] schemars = ["dep:schemars"] -serde = ["biome_js_syntax/schema"] -tests = [] +serde = ["biome_js_syntax/schema"] +tests = [] # cargo-workspaces metadata [package.metadata.workspaces] diff --git a/crates/biome_js_semantic/Cargo.toml b/crates/biome_js_semantic/Cargo.toml index 21f41f0988ef..cfcdea9fc795 100644 --- a/crates/biome_js_semantic/Cargo.toml +++ b/crates/biome_js_semantic/Cargo.toml @@ -1,26 +1,26 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's semantic model for JavaScript" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_js_semantic" +description = "Biome's semantic model for JavaScript" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_js_semantic" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] biome_js_syntax = { workspace = true } -biome_rowan = { workspace = true } -rust-lapper = "1.1.0" -rustc-hash = { workspace = true } -smallvec = { workspace = true } +biome_rowan = { workspace = true } +rust-lapper = "1.1.0" +rustc-hash = { workspace = true } +smallvec = { workspace = true } [dev-dependencies] -biome_console = { path = "../biome_console" } +biome_console = { path = "../biome_console" } biome_diagnostics = { path = "../biome_diagnostics" } -biome_js_parser = { path = "../biome_js_parser" } +biome_js_parser = { path = "../biome_js_parser" } [lints] workspace = true diff --git a/crates/biome_js_syntax/Cargo.toml b/crates/biome_js_syntax/Cargo.toml index b93f99e96ca5..d7c3cb8d6f30 100644 --- a/crates/biome_js_syntax/Cargo.toml +++ b/crates/biome_js_syntax/Cargo.toml @@ -1,25 +1,25 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_js_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_js_syntax" +description = "SyntaxKind and common rowan definitions for biome_js_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_js_syntax" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] -biome_rowan = { workspace = true, features = ["serde"] } +biome_rowan = { workspace = true, features = ["serde"] } biome_string_case = { workspace = true } -enumflags2 = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +enumflags2 = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [dev-dependencies] biome_js_factory = { path = "../biome_js_factory" } -biome_js_parser = { path = "../biome_js_parser" } +biome_js_parser = { path = "../biome_js_parser" } [features] schema = ["schemars", "biome_rowan/serde"] diff --git a/crates/biome_js_transform/Cargo.toml b/crates/biome_js_transform/Cargo.toml index cab161c52342..43107012f100 100644 --- a/crates/biome_js_transform/Cargo.toml +++ b/crates/biome_js_transform/Cargo.toml @@ -1,32 +1,31 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's JavaScript transpiler" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_js_transform" +description = "Biome's JavaScript transpiler" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_js_transform" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_analyze = { workspace = true } +biome_analyze = { workspace = true } biome_diagnostics = { workspace = true } -biome_js_factory = { workspace = true } -biome_js_syntax = { workspace = true } -biome_rowan = { workspace = true } - +biome_js_factory = { workspace = true } +biome_js_syntax = { workspace = true } +biome_rowan = { workspace = true } [dev-dependencies] -biome_analyze = { path = "../biome_analyze" } +biome_analyze = { path = "../biome_analyze" } biome_js_formatter = { path = "../biome_js_formatter" } -biome_js_parser = { path = "../biome_js_parser" } -biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true } -tests_macros = { path = "../tests_macros" } +biome_js_parser = { path = "../biome_js_parser" } +biome_test_utils = { path = "../biome_test_utils" } +insta = { workspace = true } +tests_macros = { path = "../tests_macros" } [lints] workspace = true diff --git a/crates/biome_json_analyze/Cargo.toml b/crates/biome_json_analyze/Cargo.toml index b4ae9aa09b67..82a911b5c2c6 100644 --- a/crates/biome_json_analyze/Cargo.toml +++ b/crates/biome_json_analyze/Cargo.toml @@ -1,32 +1,32 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's JSON linter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_json_analyze" +description = "Biome's JSON linter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_json_analyze" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_analyze = { workspace = true } -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } +biome_analyze = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } biome_json_factory = { workspace = true } -biome_json_syntax = { workspace = true } -biome_rowan = { workspace = true } -natord = { workspace = true } -rustc-hash = { workspace = true } +biome_json_syntax = { workspace = true } +biome_rowan = { workspace = true } +natord = { workspace = true } +rustc-hash = { workspace = true } [dev-dependencies] biome_json_parser = { path = "../biome_json_parser" } -biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true, features = ["glob"] } -tests_macros = { path = "../tests_macros" } +biome_test_utils = { path = "../biome_test_utils" } +insta = { workspace = true, features = ["glob"] } +tests_macros = { path = "../tests_macros" } [lints] workspace = true diff --git a/crates/biome_json_factory/Cargo.toml b/crates/biome_json_factory/Cargo.toml index c4f6b3962721..8a74cbe0d4d7 100644 --- a/crates/biome_json_factory/Cargo.toml +++ b/crates/biome_json_factory/Cargo.toml @@ -1,20 +1,20 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to create JSON AST for biome_json_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_json_factory" +description = "Utilities to create JSON AST for biome_json_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_json_factory" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_json_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_json_formatter/Cargo.toml b/crates/biome_json_formatter/Cargo.toml index be80ef65c9ed..2d4bfc332931 100644 --- a/crates/biome_json_formatter/Cargo.toml +++ b/crates/biome_json_formatter/Cargo.toml @@ -1,38 +1,37 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's JSON formatter" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_json_formatter" +description = "Biome's JSON formatter" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_json_formatter" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_deserialize = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_formatter = { workspace = true } -biome_json_syntax = { workspace = true } -biome_rowan = { workspace = true } -biome_suppression = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"], optional = true } - +biome_diagnostics = { workspace = true } +biome_formatter = { workspace = true } +biome_json_syntax = { workspace = true } +biome_rowan = { workspace = true } +biome_suppression = { workspace = true } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"], optional = true } [dev-dependencies] biome_formatter_test = { path = "../biome_formatter_test" } -biome_fs = { path = "../biome_fs" } -biome_json_parser = { path = "../biome_json_parser" } -biome_parser = { path = "../biome_parser" } -biome_service = { path = "../biome_service" } -countme = { workspace = true, features = ["enable"] } -serde_json = { workspace = true } -tests_macros = { path = "../tests_macros" } +biome_fs = { path = "../biome_fs" } +biome_json_parser = { path = "../biome_json_parser" } +biome_parser = { path = "../biome_parser" } +biome_service = { path = "../biome_service" } +countme = { workspace = true, features = ["enable"] } +serde_json = { workspace = true } +tests_macros = { path = "../tests_macros" } # cargo-workspaces metadata [package.metadata.workspaces] diff --git a/crates/biome_json_parser/Cargo.toml b/crates/biome_json_parser/Cargo.toml index 72cef978ed04..3cf7e2839db0 100644 --- a/crates/biome_json_parser/Cargo.toml +++ b/crates/biome_json_parser/Cargo.toml @@ -1,31 +1,31 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's JSON parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_json_parser" +description = "Biome's JSON parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_json_parser" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_json_factory = { workspace = true } -biome_json_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_json_factory = { workspace = true } +biome_json_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } biome_unicode_table = { workspace = true } -tracing = { workspace = true } -unicode-bom = { workspace = true } +tracing = { workspace = true } +unicode-bom = { workspace = true } [dev-dependencies] -insta = { workspace = true } -quickcheck = { workspace = true } +insta = { workspace = true } +quickcheck = { workspace = true } quickcheck_macros = { workspace = true } -tests_macros = { path = "../tests_macros" } +tests_macros = { path = "../tests_macros" } # cargo-workspaces metadata [package.metadata.workspaces] diff --git a/crates/biome_json_syntax/Cargo.toml b/crates/biome_json_syntax/Cargo.toml index 366bf63872b3..be2ffd700775 100644 --- a/crates/biome_json_syntax/Cargo.toml +++ b/crates/biome_json_syntax/Cargo.toml @@ -1,22 +1,22 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_json_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_json_syntax" +description = "SyntaxKind and common rowan definitions for biome_json_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_json_syntax" repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_rowan = { workspace = true, features = ["serde"] } +biome_rowan = { workspace = true, features = ["serde"] } biome_string_case = { workspace = true } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [features] schema = ["biome_rowan/serde", "schemars"] diff --git a/crates/biome_lsp/Cargo.toml b/crates/biome_lsp/Cargo.toml index a10d7373f9f0..796a9f39c081 100644 --- a/crates/biome_lsp/Cargo.toml +++ b/crates/biome_lsp/Cargo.toml @@ -1,37 +1,37 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's language server protocol" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_lsp" -publish = false +description = "Biome's language server protocol" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_lsp" +publish = false repository.workspace = true -version = "0.0.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = { workspace = true } -biome_analyze = { workspace = true } -biome_configuration = { workspace = true } -biome_console = { workspace = true } -biome_deserialize = { workspace = true } -biome_diagnostics = { workspace = true } -biome_fs = { workspace = true } +anyhow = { workspace = true } +biome_analyze = { workspace = true } +biome_configuration = { workspace = true } +biome_console = { workspace = true } +biome_deserialize = { workspace = true } +biome_diagnostics = { workspace = true } +biome_fs = { workspace = true } biome_lsp_converters = { workspace = true } -biome_rowan = { workspace = true } -biome_service = { workspace = true } -biome_text_edit = { workspace = true } -futures = "0.3.31" -rustc-hash = { workspace = true } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -tokio = { workspace = true, features = ["rt", "io-std"] } -tower-lsp = { version = "0.20.0" } -tracing = { workspace = true, features = ["attributes"] } +biome_rowan = { workspace = true } +biome_service = { workspace = true } +biome_text_edit = { workspace = true } +futures = "0.3.31" +rustc-hash = { workspace = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +tokio = { workspace = true, features = ["rt", "io-std"] } +tower-lsp = { version = "0.20.0" } +tracing = { workspace = true, features = ["attributes"] } [dev-dependencies] tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] } diff --git a/crates/biome_lsp_converters/Cargo.toml b/crates/biome_lsp_converters/Cargo.toml index 711929b28a32..4dfe73055ddf 100644 --- a/crates/biome_lsp_converters/Cargo.toml +++ b/crates/biome_lsp_converters/Cargo.toml @@ -1,22 +1,22 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's tools to convert between LSP and Biome's data structures" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_lsp_converters" +description = "Biome's tools to convert between LSP and Biome's data structures" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_lsp_converters" repository.workspace = true -version = "0.1.0" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -anyhow = { workspace = true } +anyhow = { workspace = true } biome_rowan = { workspace = true } -rustc-hash = { workspace = true } -tower-lsp = { version = "0.20.0" } +rustc-hash = { workspace = true } +tower-lsp = { version = "0.20.0" } [dev-dependencies] tower = { version = "0.4.13", features = ["timeout"] } diff --git a/crates/biome_markdown_factory/Cargo.toml b/crates/biome_markdown_factory/Cargo.toml index 73fc2ac80592..d996853190fc 100644 --- a/crates/biome_markdown_factory/Cargo.toml +++ b/crates/biome_markdown_factory/Cargo.toml @@ -1,20 +1,20 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to create Markdown AST for biome_markdown_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_markdown_factory" +description = "Utilities to create Markdown AST for biome_markdown_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_markdown_factory" repository.workspace = true -version = "0.0.1" +version = "0.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_markdown_syntax = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_markdown_parser/Cargo.toml b/crates/biome_markdown_parser/Cargo.toml index 494e720182ea..748ed93fee31 100644 --- a/crates/biome_markdown_parser/Cargo.toml +++ b/crates/biome_markdown_parser/Cargo.toml @@ -1,32 +1,32 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's Markdown parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_markdown_parser" +description = "Biome's Markdown parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_markdown_parser" repository.workspace = true -version = "0.0.1" +version = "0.0.1" [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } biome_markdown_factory = { workspace = true } -biome_markdown_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } -biome_test_utils = { workspace = true } -biome_unicode_table = { workspace = true } -tracing = { workspace = true } -unicode-bom = { workspace = true } +biome_markdown_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } +biome_test_utils = { workspace = true } +biome_unicode_table = { workspace = true } +tracing = { workspace = true } +unicode-bom = { workspace = true } [dev-dependencies] -insta = { workspace = true } -quickcheck = { workspace = true } +insta = { workspace = true } +quickcheck = { workspace = true } quickcheck_macros = { workspace = true } -tests_macros = { path = "../tests_macros" } +tests_macros = { path = "../tests_macros" } # cargo-workspaces metadata [package.metadata.workspaces] diff --git a/crates/biome_markdown_syntax/Cargo.toml b/crates/biome_markdown_syntax/Cargo.toml index 4bce253cad07..3409a4e01c86 100644 --- a/crates/biome_markdown_syntax/Cargo.toml +++ b/crates/biome_markdown_syntax/Cargo.toml @@ -1,21 +1,21 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_markdown_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_markdown_syntax" +description = "SyntaxKind and common rowan definitions for biome_markdown_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_markdown_syntax" repository.workspace = true -version = "0.0.1" +version = "0.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_rowan = { workspace = true, features = ["serde"] } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [features] schema = ["biome_rowan/serde", "schemars"] diff --git a/crates/biome_markup/Cargo.toml b/crates/biome_markup/Cargo.toml index f40844b34f71..a4c6622d743f 100644 --- a/crates/biome_markup/Cargo.toml +++ b/crates/biome_markup/Cargo.toml @@ -1,23 +1,22 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Macros to write text using a HTML-like syntax" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_markup" +description = "Macros to write text using a HTML-like syntax" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_markup" repository.workspace = true -version = "0.5.7" - +version = "0.5.7" [lib] proc-macro = true [dependencies] proc-macro-error = { version = "1.0.4", default-features = false } -proc-macro2 = { workspace = true } -quote = "1.0.14" +proc-macro2 = { workspace = true } +quote = "1.0.14" [lints] workspace = true diff --git a/crates/biome_migrate/Cargo.toml b/crates/biome_migrate/Cargo.toml index 3449b59426b3..3a2fad8793c4 100644 --- a/crates/biome_migrate/Cargo.toml +++ b/crates/biome_migrate/Cargo.toml @@ -1,34 +1,34 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities for the `biome migrate` command" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_migrate" -publish = false +description = "Utilities for the `biome migrate` command" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_migrate" +publish = false repository.workspace = true -version = "0.0.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_analyze = { workspace = true } -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } +biome_analyze = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } biome_json_analyze = { workspace = true } biome_json_factory = { workspace = true } -biome_json_syntax = { workspace = true } -biome_rowan = { workspace = true } -rustc-hash = { workspace = true } +biome_json_syntax = { workspace = true } +biome_rowan = { workspace = true } +rustc-hash = { workspace = true } [dev-dependencies] biome_json_factory = { path = "../biome_json_factory" } -biome_json_parser = { path = "../biome_json_parser" } -biome_test_utils = { path = "../biome_test_utils" } -insta = { workspace = true, features = ["glob"] } -tests_macros = { path = "../tests_macros" } +biome_json_parser = { path = "../biome_json_parser" } +biome_test_utils = { path = "../biome_test_utils" } +insta = { workspace = true, features = ["glob"] } +tests_macros = { path = "../tests_macros" } [lints] workspace = true diff --git a/crates/biome_parser/Cargo.toml b/crates/biome_parser/Cargo.toml index 769db15fc9b3..a61d0d6f041d 100644 --- a/crates/biome_parser/Cargo.toml +++ b/crates/biome_parser/Cargo.toml @@ -1,23 +1,23 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's parser shared infrastructure" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_parser" +description = "Biome's parser shared infrastructure" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_parser" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_rowan = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_rowan = { workspace = true } biome_unicode_table = { workspace = true } -drop_bomb = "0.1.5" -enumflags2 = { workspace = true } -unicode-bom = { workspace = true } +drop_bomb = "0.1.5" +enumflags2 = { workspace = true } +unicode-bom = { workspace = true } [lints] workspace = true diff --git a/crates/biome_project/Cargo.toml b/crates/biome_project/Cargo.toml index adf0ce85eade..66e80d1df97b 100644 --- a/crates/biome_project/Cargo.toml +++ b/crates/biome_project/Cargo.toml @@ -1,35 +1,35 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Workspace project handler" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_project" -publish = true +description = "Workspace project handler" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_project" +publish = true repository.workspace = true -version = "0.5.7" +version = "0.5.7" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_console = { workspace = true } -biome_deserialize = { workspace = true } +biome_console = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_json_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } -biome_text_size = { workspace = true } -node-semver = "2.1.0" -rustc-hash = { workspace = true } -serde = { workspace = true } +biome_diagnostics = { workspace = true } +biome_json_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } +biome_text_size = { workspace = true } +node-semver = "2.1.0" +rustc-hash = { workspace = true } +serde = { workspace = true } [dev-dependencies] biome_json_parser = { path = "../biome_json_parser" } -insta = { workspace = true } -tests_macros = { path = "../tests_macros" } +insta = { workspace = true } +tests_macros = { path = "../tests_macros" } [lints] workspace = true diff --git a/crates/biome_rowan/Cargo.toml b/crates/biome_rowan/Cargo.toml index b620756f17dd..f96bf3271f9b 100644 --- a/crates/biome_rowan/Cargo.toml +++ b/crates/biome_rowan/Cargo.toml @@ -1,36 +1,38 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's custom Rowan definition" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_rowan" +description = "Biome's custom Rowan definition" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_rowan" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] biome_text_edit = { workspace = true } biome_text_size = { workspace = true } -countme = { workspace = true } -hashbrown = { version = "0.14.5", features = ["inline-more"], default-features = false } -rustc-hash = { workspace = true } -serde = { workspace = true, optional = true } -tracing = { workspace = true } +countme = { workspace = true } +hashbrown = { version = "0.14.5", features = [ + "inline-more", +], default-features = false } +rustc-hash = { workspace = true } +serde = { workspace = true, optional = true } +tracing = { workspace = true } [dev-dependencies] -iai = "0.1.1" -quickcheck = { workspace = true } +iai = "0.1.1" +quickcheck = { workspace = true } quickcheck_macros = { workspace = true } -serde_json = { workspace = true } +serde_json = { workspace = true } [features] serde = ["dep:serde", "biome_text_size/serde", "biome_text_size/schemars"] [[bench]] harness = false -name = "mutation" +name = "mutation" [lints] workspace = true diff --git a/crates/biome_service/Cargo.toml b/crates/biome_service/Cargo.toml index b1b7df54ed57..a4b25ebe4a80 100644 --- a/crates/biome_service/Cargo.toml +++ b/crates/biome_service/Cargo.toml @@ -1,91 +1,91 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's core functionality" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_service" -publish = false +description = "Biome's core functionality" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_service" +publish = false repository.workspace = true -version = "0.0.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_analyze = { workspace = true, features = ["serde"] } -biome_configuration = { workspace = true, features = ["schema"] } -biome_console = { workspace = true } -biome_css_analyze = { workspace = true } -biome_css_formatter = { workspace = true } -biome_css_parser = { workspace = true } -biome_css_syntax = { workspace = true } -biome_deserialize = { workspace = true } +biome_analyze = { workspace = true, features = ["serde"] } +biome_configuration = { workspace = true, features = ["schema"] } +biome_console = { workspace = true } +biome_css_analyze = { workspace = true } +biome_css_formatter = { workspace = true } +biome_css_parser = { workspace = true } +biome_css_syntax = { workspace = true } +biome_deserialize = { workspace = true } biome_deserialize_macros = { workspace = true } -biome_diagnostics = { workspace = true } -biome_flags = { workspace = true } -biome_formatter = { workspace = true, features = ["serde"] } -biome_fs = { workspace = true, features = ["serde"] } -biome_graphql_analyze = { workspace = true } -biome_graphql_formatter = { workspace = true } -biome_graphql_parser = { workspace = true } -biome_graphql_syntax = { workspace = true } -biome_grit_formatter = { workspace = true } -biome_grit_parser = { workspace = true } -biome_grit_patterns = { workspace = true } -biome_grit_syntax = { workspace = true } -biome_html_formatter = { workspace = true } -biome_html_parser = { workspace = true } -biome_html_syntax = { workspace = true } -biome_js_analyze = { workspace = true } -biome_js_factory = { workspace = true, optional = true } -biome_js_formatter = { workspace = true, features = ["serde"] } -biome_js_parser = { workspace = true } -biome_js_semantic = { workspace = true } -biome_js_syntax = { workspace = true, features = ["schema"] } -biome_json_analyze = { workspace = true } -biome_json_formatter = { workspace = true, features = ["serde"] } -biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_project = { workspace = true } -biome_rowan = { workspace = true, features = ["serde"] } -biome_string_case = { workspace = true } -biome_text_edit = { workspace = true } -bpaf = { workspace = true } -dashmap = { workspace = true } -enumflags2 = { workspace = true, features = ["serde"] } -getrandom = { workspace = true, features = ["js"] } -ignore = { workspace = true } -indexmap = { workspace = true, features = ["serde"] } -oxc_resolver = { workspace = true } -regex = { workspace = true } -rustc-hash = { workspace = true } -schemars = { workspace = true, features = ["indexmap1"], optional = true } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true, features = ["raw_value"] } -slotmap = { workspace = true, features = ["serde"] } -smallvec = { workspace = true, features = ["serde"] } -tracing = { workspace = true, features = ["attributes", "log"] } +biome_diagnostics = { workspace = true } +biome_flags = { workspace = true } +biome_formatter = { workspace = true, features = ["serde"] } +biome_fs = { workspace = true, features = ["serde"] } +biome_graphql_analyze = { workspace = true } +biome_graphql_formatter = { workspace = true } +biome_graphql_parser = { workspace = true } +biome_graphql_syntax = { workspace = true } +biome_grit_formatter = { workspace = true } +biome_grit_parser = { workspace = true } +biome_grit_patterns = { workspace = true } +biome_grit_syntax = { workspace = true } +biome_html_formatter = { workspace = true } +biome_html_parser = { workspace = true } +biome_html_syntax = { workspace = true } +biome_js_analyze = { workspace = true } +biome_js_factory = { workspace = true, optional = true } +biome_js_formatter = { workspace = true, features = ["serde"] } +biome_js_parser = { workspace = true } +biome_js_semantic = { workspace = true } +biome_js_syntax = { workspace = true, features = ["schema"] } +biome_json_analyze = { workspace = true } +biome_json_formatter = { workspace = true, features = ["serde"] } +biome_json_parser = { workspace = true } +biome_json_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_project = { workspace = true } +biome_rowan = { workspace = true, features = ["serde"] } +biome_string_case = { workspace = true } +biome_text_edit = { workspace = true } +bpaf = { workspace = true } +dashmap = { workspace = true } +enumflags2 = { workspace = true, features = ["serde"] } +getrandom = { workspace = true, features = ["js"] } +ignore = { workspace = true } +indexmap = { workspace = true, features = ["serde"] } +oxc_resolver = { workspace = true } +regex = { workspace = true } +rustc-hash = { workspace = true } +schemars = { workspace = true, features = ["indexmap1"], optional = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true, features = ["raw_value"] } +slotmap = { workspace = true, features = ["serde"] } +smallvec = { workspace = true, features = ["serde"] } +tracing = { workspace = true, features = ["attributes", "log"] } [features] experimental-html = [] schema = [ - "dep:schemars", - "biome_js_analyze/schema", - "biome_formatter/serde", - "biome_js_factory", - "biome_text_edit/schemars", - "biome_json_syntax/schema", - "biome_css_syntax/schema", - "biome_graphql_syntax/schema", - "biome_grit_syntax/schema", + "dep:schemars", + "biome_js_analyze/schema", + "biome_formatter/serde", + "biome_js_factory", + "biome_text_edit/schemars", + "biome_json_syntax/schema", + "biome_css_syntax/schema", + "biome_graphql_syntax/schema", + "biome_grit_syntax/schema", ] [dev-dependencies] -insta = { workspace = true } +insta = { workspace = true } tests_macros = { workspace = true } [lints] diff --git a/crates/biome_string_case/Cargo.toml b/crates/biome_string_case/Cargo.toml index 36bd390155b4..4eb310f72093 100644 --- a/crates/biome_string_case/Cargo.toml +++ b/crates/biome_string_case/Cargo.toml @@ -1,14 +1,14 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to convert string cases" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_string_case" +description = "Utilities to convert string cases" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_string_case" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [lints] workspace = true diff --git a/crates/biome_suppression/Cargo.toml b/crates/biome_suppression/Cargo.toml index 3438328cd7d0..3659997e18bf 100644 --- a/crates/biome_suppression/Cargo.toml +++ b/crates/biome_suppression/Cargo.toml @@ -1,20 +1,19 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to suppress diagnostics" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_suppression" +description = "Utilities to suppress diagnostics" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_suppression" repository.workspace = true -version = "0.5.7" - +version = "0.5.7" [dependencies] -biome_console = { workspace = true } +biome_console = { workspace = true } biome_diagnostics = { workspace = true } -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } [lints] workspace = true diff --git a/crates/biome_test_utils/Cargo.toml b/crates/biome_test_utils/Cargo.toml index b5085c9a8516..a8403464e88a 100644 --- a/crates/biome_test_utils/Cargo.toml +++ b/crates/biome_test_utils/Cargo.toml @@ -1,32 +1,32 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities for tests" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_test_utils" -publish = false +description = "Utilities for tests" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_test_utils" +publish = false repository.workspace = true -version = "0.0.0" +version = "0.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_analyze = { workspace = true } +biome_analyze = { workspace = true } biome_configuration = { workspace = true } -biome_console = { workspace = true } -biome_deserialize = { workspace = true } -biome_diagnostics = { workspace = true } -biome_json_parser = { workspace = true } -biome_project = { workspace = true } -biome_rowan = { workspace = true } -biome_service = { workspace = true } -countme = { workspace = true, features = ["enable"] } -json_comments = "0.2.2" -serde_json = { workspace = true } -similar = { workspace = true } +biome_console = { workspace = true } +biome_deserialize = { workspace = true } +biome_diagnostics = { workspace = true } +biome_json_parser = { workspace = true } +biome_project = { workspace = true } +biome_rowan = { workspace = true } +biome_service = { workspace = true } +countme = { workspace = true, features = ["enable"] } +json_comments = "0.2.2" +serde_json = { workspace = true } +similar = { workspace = true } [lints] workspace = true diff --git a/crates/biome_text_edit/Cargo.toml b/crates/biome_text_edit/Cargo.toml index a19726769abe..31e884724734 100644 --- a/crates/biome_text_edit/Cargo.toml +++ b/crates/biome_text_edit/Cargo.toml @@ -1,20 +1,20 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to edit text (This is taken from rust-analyzer)" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_text_edit" +description = "Utilities to edit text (This is taken from rust-analyzer)" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_text_edit" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] biome_text_size = { workspace = true, features = ["serde"] } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } -similar = { workspace = true, features = ["unicode"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } +similar = { workspace = true, features = ["unicode"] } [features] schemars = ["dep:schemars", "biome_text_size/schemars"] diff --git a/crates/biome_text_size/Cargo.toml b/crates/biome_text_size/Cargo.toml index 92a7bf260845..82209ba25e57 100644 --- a/crates/biome_text_size/Cargo.toml +++ b/crates/biome_text_size/Cargo.toml @@ -1,26 +1,26 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to treat text sizes/ranges in a more type-safe" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_text_size" +description = "Utilities to treat text sizes/ranges in a more type-safe" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_text_size" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] schemars = { workspace = true, optional = true } -serde = { workspace = true, optional = true } +serde = { workspace = true, optional = true } [dev-dependencies] -serde_test = "1.0.177" +serde_test = "1.0.177" static_assertions = "1.1" [[test]] -name = "serde" -path = "tests/serde.rs" +name = "serde" +path = "tests/serde.rs" required-features = ["serde"] [lints] diff --git a/crates/biome_ungrammar/Cargo.toml b/crates/biome_ungrammar/Cargo.toml index 8787f3b1e741..d237a7abc5c9 100644 --- a/crates/biome_ungrammar/Cargo.toml +++ b/crates/biome_ungrammar/Cargo.toml @@ -1,14 +1,14 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "A DSL for describing concrete syntax trees" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_ungrammar" +description = "A DSL for describing concrete syntax trees" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_ungrammar" repository.workspace = true -version = "0.3.1" +version = "0.3.1" [lints] workspace = true diff --git a/crates/biome_unicode_table/Cargo.toml b/crates/biome_unicode_table/Cargo.toml index b740b1de1b85..79c2548a0b6b 100644 --- a/crates/biome_unicode_table/Cargo.toml +++ b/crates/biome_unicode_table/Cargo.toml @@ -1,14 +1,14 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Unicode table for JavaScript IDs" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_unicode_table" +description = "Unicode table for JavaScript IDs" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_unicode_table" repository.workspace = true -version = "0.5.7" +version = "0.5.7" [dependencies] diff --git a/crates/biome_wasm/Cargo.toml b/crates/biome_wasm/Cargo.toml index f1bd36d1c8f8..1f0469da599f 100644 --- a/crates/biome_wasm/Cargo.toml +++ b/crates/biome_wasm/Cargo.toml @@ -1,32 +1,31 @@ [package] -authors = ["Biome Developers and Contributors"] -categories = ["development-tools", "web-programming"] +authors = ["Biome Developers and Contributors"] +categories = ["development-tools", "web-programming"] description = "WebAssembly bindings to the Biome workspace API" -edition = "2021" -homepage = "https://biomejs.dev/" -keywords = ["parser", "linter", "formatter", "wasm"] -license = "MIT OR Apache-2.0" -name = "biome_wasm" -publish = false -repository = "https://github.com/biomejs/biome" -version = "1.7.3" - +edition = "2021" +homepage = "https://biomejs.dev/" +keywords = ["parser", "linter", "formatter", "wasm"] +license = "MIT OR Apache-2.0" +name = "biome_wasm" +publish = false +repository = "https://github.com/biomejs/biome" +version = "1.7.3" [lib] crate-type = ["cdylib", "rlib"] [features] -default = ["console_error_panic_hook"] +default = ["console_error_panic_hook"] experimental-html = ["biome_service/experimental-html"] [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_service = { workspace = true } -js-sys = "0.3.72" -serde = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_service = { workspace = true } +js-sys = "0.3.72" +serde = { workspace = true } serde-wasm-bindgen = "0.6.5" -wasm-bindgen = { version = "0.2.95", features = ["serde-serialize"] } +wasm-bindgen = { version = "0.2.95", features = ["serde-serialize"] } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires @@ -34,13 +33,12 @@ wasm-bindgen = { version = "0.2.95", features = ["serde-serialize"] } # code size when deploying. console_error_panic_hook = { version = "0.1.7", optional = true } - [build-dependencies] -biome_js_factory = { workspace = true } +biome_js_factory = { workspace = true } biome_js_formatter = { workspace = true } -biome_rowan = { workspace = true } -biome_service = { workspace = true, features = ["schema"] } -quote = "1.0.14" +biome_rowan = { workspace = true } +biome_service = { workspace = true, features = ["schema"] } +quote = "1.0.14" [lints] workspace = true diff --git a/crates/biome_yaml_factory/Cargo.toml b/crates/biome_yaml_factory/Cargo.toml index 5cb068e1f52e..2c97091ea2b0 100644 --- a/crates/biome_yaml_factory/Cargo.toml +++ b/crates/biome_yaml_factory/Cargo.toml @@ -1,19 +1,19 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Utilities to create YAML AST for biome_yaml_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_yaml_factory" +description = "Utilities to create YAML AST for biome_yaml_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_yaml_factory" repository.workspace = true -version = "0.0.1" +version = "0.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -biome_rowan = { workspace = true } +biome_rowan = { workspace = true } biome_yaml_syntax = { workspace = true } [lints] diff --git a/crates/biome_yaml_parser/Cargo.toml b/crates/biome_yaml_parser/Cargo.toml index d2dd592c2d45..6e22538bd9b7 100644 --- a/crates/biome_yaml_parser/Cargo.toml +++ b/crates/biome_yaml_parser/Cargo.toml @@ -1,28 +1,27 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "Biome's YAML parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_yaml_parser" +description = "Biome's YAML parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_yaml_parser" repository.workspace = true -version = "0.0.1" +version = "0.0.1" [lints] workspace = true [dependencies] -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } biome_unicode_table = { workspace = true } -biome_yaml_syntax = { workspace = true } -tracing = { workspace = true } - +biome_yaml_syntax = { workspace = true } +tracing = { workspace = true } [dev-dependencies] -quickcheck = { workspace = true } +quickcheck = { workspace = true } quickcheck_macros = { workspace = true } diff --git a/crates/biome_yaml_syntax/Cargo.toml b/crates/biome_yaml_syntax/Cargo.toml index efb37fa25c36..9a132272cc28 100644 --- a/crates/biome_yaml_syntax/Cargo.toml +++ b/crates/biome_yaml_syntax/Cargo.toml @@ -1,22 +1,21 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -description = "SyntaxKind and common rowan definitions for biome_yaml_parser" -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "biome_yaml_syntax" +description = "SyntaxKind and common rowan definitions for biome_yaml_parser" +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "biome_yaml_syntax" repository.workspace = true -version = "0.0.1" - +version = "0.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] biome_rowan = { workspace = true, features = ["serde"] } -schemars = { workspace = true, optional = true } -serde = { workspace = true, features = ["derive"] } +schemars = { workspace = true, optional = true } +serde = { workspace = true, features = ["derive"] } [features] schema = ["biome_rowan/serde", "schemars"] diff --git a/crates/tests_macros/Cargo.toml b/crates/tests_macros/Cargo.toml index c1fc3b506bb7..67ccd2f3f963 100644 --- a/crates/tests_macros/Cargo.toml +++ b/crates/tests_macros/Cargo.toml @@ -1,23 +1,23 @@ [package] -authors.workspace = true +authors.workspace = true categories.workspace = true -edition.workspace = true -homepage.workspace = true -keywords.workspace = true -license.workspace = true -name = "tests_macros" -publish = false +edition.workspace = true +homepage.workspace = true +keywords.workspace = true +license.workspace = true +name = "tests_macros" +publish = false repository.workspace = true -version = "0.0.0" +version = "0.0.0" [lib] proc-macro = true [dependencies] biome_string_case = { workspace = true } -case = "1.0.0" -globwalk = "0.9.1" -proc-macro-error = "1.0.4" -proc-macro2 = { workspace = true } -quote = "1.0.14" -syn = "2.0.59" +case = "1.0.0" +globwalk = "0.9.1" +proc-macro-error = "1.0.4" +proc-macro2 = { workspace = true } +quote = "1.0.14" +syn = "2.0.59" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 595ef5c188fc..7792a76521bf 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] edition = "2021" -name = "xtask" +name = "xtask" publish = false version = "0.0.0" diff --git a/xtask/bench/Cargo.toml b/xtask/bench/Cargo.toml index 4f88fda559cc..43c448815d62 100644 --- a/xtask/bench/Cargo.toml +++ b/xtask/bench/Cargo.toml @@ -1,36 +1,36 @@ [package] edition = "2021" -name = "xtask_bench" +name = "xtask_bench" publish = false version = "0.0.0" [dependencies] -biome_analyze = { workspace = true } -biome_css_analyze = { workspace = true } -biome_css_formatter = { workspace = true } -biome_css_parser = { workspace = true } -biome_css_syntax = { workspace = true } -biome_diagnostics = { workspace = true } -biome_formatter = { workspace = true } +biome_analyze = { workspace = true } +biome_css_analyze = { workspace = true } +biome_css_formatter = { workspace = true } +biome_css_parser = { workspace = true } +biome_css_syntax = { workspace = true } +biome_diagnostics = { workspace = true } +biome_formatter = { workspace = true } biome_graphql_formatter = { workspace = true } -biome_graphql_parser = { workspace = true } -biome_graphql_syntax = { workspace = true } -biome_grit_patterns = { workspace = true } -biome_js_analyze = { workspace = true } -biome_js_formatter = { workspace = true } -biome_js_parser = { workspace = true } -biome_js_syntax = { workspace = true } -biome_json_formatter = { workspace = true } -biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } - -ansi_rgb = "0.2.0" +biome_graphql_parser = { workspace = true } +biome_graphql_syntax = { workspace = true } +biome_grit_patterns = { workspace = true } +biome_js_analyze = { workspace = true } +biome_js_formatter = { workspace = true } +biome_js_parser = { workspace = true } +biome_js_syntax = { workspace = true } +biome_json_formatter = { workspace = true } +biome_json_parser = { workspace = true } +biome_json_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } + +ansi_rgb = "0.2.0" codspeed-criterion-compat = { version = "2.7.2", optional = true } -criterion = "0.5.1" -ureq = "2.10.1" -url = "2.5.2" +criterion = "0.5.1" +ureq = "2.10.1" +url = "2.5.2" [target.'cfg(target_os = "windows")'.dependencies] mimalloc = "0.1.43" @@ -43,52 +43,52 @@ codspeed = ["codspeed-criterion-compat"] [[bench]] harness = false -name = "js_analyzer" +name = "js_analyzer" # JavaScript benches [[bench]] harness = false -name = "js_parser" +name = "js_parser" [[bench]] harness = false -name = "js_formatter" +name = "js_formatter" # JSON benches [[bench]] harness = false -name = "json_parser" +name = "json_parser" [[bench]] harness = false -name = "json_formatter" +name = "json_formatter" # CSS benches [[bench]] harness = false -name = "css_parser" +name = "css_parser" [[bench]] harness = false -name = "css_formatter" +name = "css_formatter" [[bench]] harness = false -name = "css_analyzer" +name = "css_analyzer" # GraphQL benchs [[bench]] harness = false -name = "graphql_parser" +name = "graphql_parser" [[bench]] harness = false -name = "graphql_formatter" +name = "graphql_formatter" # GritQL benches [[bench]] harness = false -name = "gritql_search" +name = "gritql_search" [lints] workspace = true diff --git a/xtask/codegen/Cargo.toml b/xtask/codegen/Cargo.toml index 610f56351d1f..c718ab443cab 100644 --- a/xtask/codegen/Cargo.toml +++ b/xtask/codegen/Cargo.toml @@ -1,72 +1,72 @@ [package] edition = "2021" -name = "xtask_codegen" +name = "xtask_codegen" publish = false version = "0.0.0" [dependencies] -anyhow = { workspace = true } -bpaf = { workspace = true, features = ["derive"] } -git2 = { version = "0.19.0", default-features = false } -proc-macro2 = { workspace = true, features = ["span-locations"] } +anyhow = { workspace = true } +bpaf = { workspace = true, features = ["derive"] } +git2 = { version = "0.19.0", default-features = false } +proc-macro2 = { workspace = true, features = ["span-locations"] } pulldown-cmark = { version = "0.12.2", default-features = false, optional = true } -quote = "1.0.36" -serde = { workspace = true, optional = true } -ureq = "2.10.1" -xtask = { path = '../', version = "0.0" } +quote = "1.0.36" +serde = { workspace = true, optional = true } +ureq = "2.10.1" +xtask = { path = '../', version = "0.0" } -biome_analyze = { workspace = true, optional = true } -biome_cli = { workspace = true, optional = true } -biome_configuration = { workspace = true, optional = true } -biome_css_analyze = { workspace = true, optional = true } -biome_css_syntax = { workspace = true, optional = true } -biome_diagnostics = { workspace = true, optional = true } +biome_analyze = { workspace = true, optional = true } +biome_cli = { workspace = true, optional = true } +biome_configuration = { workspace = true, optional = true } +biome_css_analyze = { workspace = true, optional = true } +biome_css_syntax = { workspace = true, optional = true } +biome_diagnostics = { workspace = true, optional = true } biome_graphql_analyze = { workspace = true, optional = true } -biome_graphql_parser = { workspace = true, optional = true } -biome_graphql_syntax = { workspace = true, optional = true } -biome_js_analyze = { workspace = true, optional = true } -biome_js_factory = { workspace = true, optional = true } -biome_js_formatter = { workspace = true, optional = true } -biome_js_parser = { workspace = true, optional = true } -biome_js_syntax = { workspace = true, optional = true } -biome_json_analyze = { workspace = true, optional = true } -biome_json_formatter = { workspace = true, optional = true } -biome_json_parser = { workspace = true, optional = true } -biome_json_syntax = { workspace = true, optional = true } -biome_rowan = { workspace = true, optional = true } -biome_service = { workspace = true, features = ["schema"], optional = true } -biome_string_case = { workspace = true } -biome_ungrammar = { workspace = true } -schemars = { workspace = true, optional = true } -serde_json = { workspace = true, optional = true } +biome_graphql_parser = { workspace = true, optional = true } +biome_graphql_syntax = { workspace = true, optional = true } +biome_js_analyze = { workspace = true, optional = true } +biome_js_factory = { workspace = true, optional = true } +biome_js_formatter = { workspace = true, optional = true } +biome_js_parser = { workspace = true, optional = true } +biome_js_syntax = { workspace = true, optional = true } +biome_json_analyze = { workspace = true, optional = true } +biome_json_formatter = { workspace = true, optional = true } +biome_json_parser = { workspace = true, optional = true } +biome_json_syntax = { workspace = true, optional = true } +biome_rowan = { workspace = true, optional = true } +biome_service = { workspace = true, features = ["schema"], optional = true } +biome_string_case = { workspace = true } +biome_ungrammar = { workspace = true } +schemars = { workspace = true, optional = true } +serde_json = { workspace = true, optional = true } [features] configuration = [ - "biome_analyze", - "biome_js_analyze", - "biome_js_syntax", - "biome_json_analyze", - "biome_json_syntax", - "biome_css_analyze", - "biome_css_syntax", - "biome_graphql_analyze", - "biome_graphql_syntax", - "biome_rowan", - "pulldown-cmark", + "biome_analyze", + "biome_js_analyze", + "biome_js_syntax", + "biome_json_analyze", + "biome_json_syntax", + "biome_css_analyze", + "biome_css_syntax", + "biome_graphql_analyze", + "biome_graphql_syntax", + "biome_rowan", + "pulldown-cmark", ] license = ["ureq/default", "ureq/json", "serde", "serde_json"] schema = [ - "schemars", - "serde_json", - "biome_rowan", - "biome_service", - "biome_js_syntax", - "biome_js_factory", - "biome_js_formatter", - "biome_json_formatter", - "biome_json_parser", - "biome_diagnostics", - "biome_configuration", + "schemars", + "serde_json", + "biome_rowan", + "biome_service", + "biome_js_syntax", + "biome_js_factory", + "biome_js_formatter", + "biome_json_formatter", + "biome_json_parser", + "biome_diagnostics", + "biome_configuration", ] [lints] diff --git a/xtask/coverage/Cargo.toml b/xtask/coverage/Cargo.toml index 7c28926a3ca7..460bf322f98e 100644 --- a/xtask/coverage/Cargo.toml +++ b/xtask/coverage/Cargo.toml @@ -1,32 +1,32 @@ [package] edition = "2021" -name = "xtask_coverage" +name = "xtask_coverage" publish = false version = "0.0.0" [dependencies] -ascii_table = "4.0.4" -backtrace = "0.3.74" -biome_console = { workspace = true } -biome_diagnostics = { workspace = true } -biome_js_parser = { workspace = true } -biome_js_semantic = { workspace = true } -biome_js_syntax = { workspace = true } -biome_parser = { workspace = true } -biome_rowan = { workspace = true } -biome_string_case = { workspace = true } -colored = "2.1.0" -indicatif = { version = "0.17.8", features = ["improved_unicode"] } -pico-args = { version = "0.5.0", features = ["eq-separator"] } -regex = { workspace = true } -serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } -serde_yaml = "0.9.34" -tracing = { workspace = true } +ascii_table = "4.0.4" +backtrace = "0.3.74" +biome_console = { workspace = true } +biome_diagnostics = { workspace = true } +biome_js_parser = { workspace = true } +biome_js_semantic = { workspace = true } +biome_js_syntax = { workspace = true } +biome_parser = { workspace = true } +biome_rowan = { workspace = true } +biome_string_case = { workspace = true } +colored = "2.1.0" +indicatif = { version = "0.17.8", features = ["improved_unicode"] } +pico-args = { version = "0.5.0", features = ["eq-separator"] } +regex = { workspace = true } +serde = { workspace = true, features = ["derive"] } +serde_json = { workspace = true } +serde_yaml = "0.9.34" +tracing = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter", "std"] } -walkdir = "2.5.0" -xtask = { path = '../', version = "0.0" } -yastl = "0.1.2" +walkdir = "2.5.0" +xtask = { path = '../', version = "0.0" } +yastl = "0.1.2" [lints] workspace = true diff --git a/xtask/libs_bench/Cargo.toml b/xtask/libs_bench/Cargo.toml index e11513f5da65..244b0577a6c9 100644 --- a/xtask/libs_bench/Cargo.toml +++ b/xtask/libs_bench/Cargo.toml @@ -1,6 +1,6 @@ [package] edition = "2021" -name = "xtask_libs_bench" +name = "xtask_libs_bench" publish = false version = "0.0.0" @@ -8,26 +8,26 @@ version = "0.0.0" regex = { workspace = true } [dev-dependencies] -criterion = "0.5.1" +criterion = "0.5.1" fastbloom-rs = "0.5.9" -fst = "0.4.7" -iai = "0.1.1" -memchr = "2.7.4" -qp-trie = "0.8.2" +fst = "0.4.7" +iai = "0.1.1" +memchr = "2.7.4" +qp-trie = "0.8.2" [[bench]] harness = false -name = "contains_iai" +name = "contains_iai" [[bench]] harness = false -name = "contains_criterion" +name = "contains_criterion" [[bin]] bench = false -name = "contains_iai" -path = "bins/contains_iai.rs" -test = false +name = "contains_iai" +path = "bins/contains_iai.rs" +test = false [lints] workspace = true diff --git a/xtask/rules_check/Cargo.toml b/xtask/rules_check/Cargo.toml index f43e383edf36..a8c94da0a82a 100644 --- a/xtask/rules_check/Cargo.toml +++ b/xtask/rules_check/Cargo.toml @@ -1,35 +1,34 @@ [package] description = "Internal script to make sure that the metadata or the rules are correct" -edition = "2021" -name = "rules_check" -publish = false -version = "0.0.0" +edition = "2021" +name = "rules_check" +publish = false +version = "0.0.0" [dependencies] -anyhow = { workspace = true } -biome_analyze = { workspace = true } -biome_configuration = { workspace = true } -biome_console = { workspace = true } -biome_css_analyze = { workspace = true } -biome_css_parser = { workspace = true } -biome_css_syntax = { workspace = true } -biome_deserialize = { workspace = true } -biome_diagnostics = { workspace = true } -biome_fs = { workspace = true } +anyhow = { workspace = true } +biome_analyze = { workspace = true } +biome_configuration = { workspace = true } +biome_console = { workspace = true } +biome_css_analyze = { workspace = true } +biome_css_parser = { workspace = true } +biome_css_syntax = { workspace = true } +biome_deserialize = { workspace = true } +biome_diagnostics = { workspace = true } +biome_fs = { workspace = true } biome_graphql_analyze = { workspace = true } -biome_graphql_parser = { workspace = true } -biome_graphql_syntax = { workspace = true } -biome_js_analyze = { workspace = true } -biome_js_parser = { workspace = true } -biome_js_syntax = { workspace = true } -biome_json_analyze = { workspace = true } -biome_json_factory = { workspace = true } -biome_json_parser = { workspace = true } -biome_json_syntax = { workspace = true } -biome_rowan = { workspace = true } -biome_service = { workspace = true } -pulldown-cmark = "0.12.2" - +biome_graphql_parser = { workspace = true } +biome_graphql_syntax = { workspace = true } +biome_js_analyze = { workspace = true } +biome_js_parser = { workspace = true } +biome_js_syntax = { workspace = true } +biome_json_analyze = { workspace = true } +biome_json_factory = { workspace = true } +biome_json_parser = { workspace = true } +biome_json_syntax = { workspace = true } +biome_rowan = { workspace = true } +biome_service = { workspace = true } +pulldown-cmark = "0.12.2" [lints] workspace = true