Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Nov 20, 2024
1 parent bff3f1f commit 12037fa
Show file tree
Hide file tree
Showing 79 changed files with 1,606 additions and 1,594 deletions.
351 changes: 179 additions & 172 deletions Cargo.toml

Large diffs are not rendered by default.

42 changes: 23 additions & 19 deletions crates/biome_analyze/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
18 changes: 9 additions & 9 deletions crates/biome_aria/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
33 changes: 16 additions & 17 deletions crates/biome_aria_metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
119 changes: 65 additions & 54 deletions crates/biome_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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]
Expand All @@ -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]
Expand Down
86 changes: 43 additions & 43 deletions crates/biome_configuration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
Loading

0 comments on commit 12037fa

Please sign in to comment.