diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-10 00:32:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-10 00:32:08 +0900 |
| commit | 8cc1ba8a02c0318b65658f1634de378c780392b9 (patch) | |
| tree | fdd5cb61e488018891a486b25991b87c84220bb8 /Cargo.lock | |
| parent | 72b2e877c01e67ba7edd37e34ac2eadb7a1c62c4 (diff) | |
| download | php-mozart-8cc1ba8a02c0318b65658f1634de378c780392b9.tar.gz php-mozart-8cc1ba8a02c0318b65658f1634de378c780392b9.tar.zst php-mozart-8cc1ba8a02c0318b65658f1634de378c780392b9.zip | |
refactor(workspace): consolidate crates into mozart-core
Merged mozart-archiver, mozart-autoload, mozart-registry,
mozart-sat-resolver, and mozart-vcs into mozart-core to align
the source layout with Composer's structure.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 103 |
1 files changed, 13 insertions, 90 deletions
@@ -1088,15 +1088,11 @@ dependencies = [ "clap_complete", "colored", "indexmap", - "mozart-archiver", - "mozart-autoload", "mozart-console-macros", "mozart-core", - "mozart-registry", "mozart-semver", "mozart-spdx-licenses", "mozart-test-harness", - "mozart-vcs", "predicates", "regex", "reqwest", @@ -1113,37 +1109,6 @@ dependencies = [ ] [[package]] -name = "mozart-archiver" -version = "0.1.0" -dependencies = [ - "anyhow", - "bzip2", - "flate2", - "mozart-registry", - "regex", - "serde_json", - "sha1", - "tar", - "tempfile", - "zip", -] - -[[package]] -name = "mozart-autoload" -version = "0.1.0" -dependencies = [ - "anyhow", - "indexmap", - "md5", - "mozart-class-map-generator", - "mozart-core", - "mozart-registry", - "regex", - "serde_json", - "tempfile", -] - -[[package]] name = "mozart-class-map-generator" version = "0.1.0" dependencies = [ @@ -1167,49 +1132,23 @@ name = "mozart-core" version = "0.1.0" dependencies = [ "anyhow", + "async-trait", + "base64", + "bzip2", "colored", "dialoguer", - "indexmap", - "mozart-console-macros", - "mozart-spdx-licenses", - "regex", - "reqwest", - "serde", - "serde_json", - "tempfile", - "tracing", -] - -[[package]] -name = "mozart-metadata-minifier" -version = "0.1.0" -dependencies = [ - "serde_json", -] - -[[package]] -name = "mozart-php-serialize" -version = "0.1.0" - -[[package]] -name = "mozart-registry" -version = "0.1.0" -dependencies = [ - "anyhow", - "async-trait", "filetime", "flate2", "indexmap", "md5", + "mozart-class-map-generator", "mozart-console-macros", - "mozart-core", "mozart-metadata-minifier", "mozart-php-serialize", - "mozart-sat-resolver", "mozart-semver", - "mozart-test-harness", - "mozart-vcs", + "mozart-spdx-licenses", "regex", + "reqwest", "serde", "serde_json", "sha1", @@ -1217,19 +1156,22 @@ dependencies = [ "tempfile", "tokio", "tracing", + "url", "zip", ] [[package]] -name = "mozart-sat-resolver" +name = "mozart-metadata-minifier" version = "0.1.0" dependencies = [ - "indexmap", - "mozart-core", - "mozart-semver", + "serde_json", ] [[package]] +name = "mozart-php-serialize" +version = "0.1.0" + +[[package]] name = "mozart-semver" version = "0.1.0" @@ -1253,25 +1195,6 @@ dependencies = [ ] [[package]] -name = "mozart-vcs" -version = "0.1.0" -dependencies = [ - "anyhow", - "base64", - "indexmap", - "mozart-core", - "mozart-semver", - "regex", - "reqwest", - "serde", - "serde_json", - "tempfile", - "tokio", - "tracing", - "url", -] - -[[package]] name = "normalize-line-endings" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" |
