mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
chore(Cargo): change how crates are version and published
Let's publish everything under `oxc` instead of individual crates
This commit is contained in:
parent
8aba8bcbb5
commit
19c68c8c57
8 changed files with 28 additions and 28 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -1221,7 +1221,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_ast_lower"
|
||||
version = "0.0.0"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
@ -1329,7 +1329,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_hir"
|
||||
version = "0.0.0"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"bitflags 2.3.2",
|
||||
"num-bigint",
|
||||
|
|
@ -1346,7 +1346,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_index"
|
||||
version = "0.0.0"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"index_vec",
|
||||
"static_assertions",
|
||||
|
|
@ -1388,7 +1388,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_minifier"
|
||||
version = "0.0.0"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"bitflags 2.3.2",
|
||||
"jemallocator",
|
||||
|
|
@ -1480,7 +1480,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_span"
|
||||
version = "0.0.0"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"compact_str",
|
||||
"miette",
|
||||
|
|
@ -1489,7 +1489,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_syntax"
|
||||
version = "0.0.0"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"bitflags 2.3.2",
|
||||
"oxc_index",
|
||||
|
|
|
|||
20
Cargo.toml
20
Cargo.toml
|
|
@ -22,18 +22,18 @@ oxc_diagnostics = { version = "0.0.6", path = "crates/oxc_diagnostics" }
|
|||
oxc_parser = { version = "0.0.6", path = "crates/oxc_parser" }
|
||||
oxc_formatter = { version = "0.0.6", path = "crates/oxc_formatter" }
|
||||
oxc_semantic = { version = "0.0.6", path = "crates/oxc_semantic" }
|
||||
oxc_span = { version = "0.0.6", path = "crates/oxc_span" }
|
||||
oxc_minifier = { version = "0.0.6", path = "crates/oxc_minifier" }
|
||||
oxc_hir = { version = "0.0.6", path = "crates/oxc_hir" }
|
||||
oxc_ast_lower = { version = "0.0.6", path = "crates/oxc_ast_lower" }
|
||||
oxc_syntax = { version = "0.0.6", path = "crates/oxc_syntax" }
|
||||
oxc_index = { version = "0.0.6", path = "crates/oxc_index" }
|
||||
|
||||
# publish = false
|
||||
oxc_span = { version = "0.0.0", path = "crates/oxc_span" }
|
||||
oxc_macros = { version = "0.0.0", path = "crates/oxc_macros" }
|
||||
oxc_linter = { version = "0.0.0", path = "crates/oxc_linter" }
|
||||
oxc_type_synthesis = { version = "0.0.0", path = "crates/oxc_type_synthesis" }
|
||||
oxc_minifier = { version = "0.0.0", path = "crates/oxc_minifier" }
|
||||
oxc_hir = { version = "0.0.0", path = "crates/oxc_hir" }
|
||||
oxc_ast_lower = { version = "0.0.0", path = "crates/oxc_ast_lower" }
|
||||
oxc_syntax = { version = "0.0.0", path = "crates/oxc_syntax" }
|
||||
oxc_index = { version = "0.0.0", path = "crates/oxc_index" }
|
||||
oxc_resolver = { version = "0.0.0", path = "crates/oxc_resolver" }
|
||||
oxc_macros = { path = "crates/oxc_macros" }
|
||||
oxc_linter = { path = "crates/oxc_linter" }
|
||||
oxc_type_synthesis = { path = "crates/oxc_type_synthesis" }
|
||||
oxc_resolver = { path = "crates/oxc_resolver" }
|
||||
|
||||
oxc_tasks_common = { path = "tasks/common" }
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "oxc_ast_lower"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
version = "0.0.6"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "oxc_hir"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
version = "0.0.6"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "oxc_index"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
version = "0.0.6"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "oxc_minifier"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
version = "0.0.6"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "oxc_span"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
version = "0.0.6"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "oxc_syntax"
|
||||
version = "0.0.0"
|
||||
publish = false
|
||||
version = "0.0.6"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue