diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-11 10:15:55 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-11 10:15:55 +0900 |
| commit | 3f80f3acd90c9782420cc0d33fcf77035e522b15 (patch) | |
| tree | 028e62e45529431be846713156d93d5a208480c7 | |
| parent | 8441abd29aea53719c19f34ec6d542a4575a23c9 (diff) | |
| download | php-mozart-3f80f3acd90c9782420cc0d33fcf77035e522b15.tar.gz php-mozart-3f80f3acd90c9782420cc0d33fcf77035e522b15.tar.zst php-mozart-3f80f3acd90c9782420cc0d33fcf77035e522b15.zip | |
enable workspace
| -rw-r--r-- | Cargo.toml | 12 | ||||
| -rw-r--r-- | crates/mozart/Cargo.toml | 9 | ||||
| -rw-r--r-- | crates/mozart/src/commands.rs (renamed from src/commands.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/about.rs (renamed from src/commands/about.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/archive.rs (renamed from src/commands/archive.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/audit.rs (renamed from src/commands/audit.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/browse.rs (renamed from src/commands/browse.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/bump.rs (renamed from src/commands/bump.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/check_platform_reqs.rs (renamed from src/commands/check_platform_reqs.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/clear_cache.rs (renamed from src/commands/clear_cache.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/config.rs (renamed from src/commands/config.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/create_project.rs (renamed from src/commands/create_project.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/depends.rs (renamed from src/commands/depends.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/diagnose.rs (renamed from src/commands/diagnose.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/dump_autoload.rs (renamed from src/commands/dump_autoload.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/exec.rs (renamed from src/commands/exec.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/fund.rs (renamed from src/commands/fund.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/global.rs (renamed from src/commands/global.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/init.rs (renamed from src/commands/init.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/install.rs (renamed from src/commands/install.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/licenses.rs (renamed from src/commands/licenses.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/outdated.rs (renamed from src/commands/outdated.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/prohibits.rs (renamed from src/commands/prohibits.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/reinstall.rs (renamed from src/commands/reinstall.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/remove.rs (renamed from src/commands/remove.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/repository.rs (renamed from src/commands/repository.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/require.rs (renamed from src/commands/require.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/run_script.rs (renamed from src/commands/run_script.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/search.rs (renamed from src/commands/search.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/self_update.rs (renamed from src/commands/self_update.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/show.rs (renamed from src/commands/show.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/status.rs (renamed from src/commands/status.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/suggests.rs (renamed from src/commands/suggests.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/update.rs (renamed from src/commands/update.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/commands/validate.rs (renamed from src/commands/validate.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/lib.rs (renamed from src/lib.rs) | 0 | ||||
| -rw-r--r-- | crates/mozart/src/main.rs (renamed from src/main.rs) | 0 |
37 files changed, 14 insertions, 7 deletions
@@ -1,9 +1,7 @@ -[package] -name = "mozart" +[workspace] +resolver = "3" +members = ["crates/*"] + +[workspace.package] version = "0.1.0" edition = "2024" - -[dependencies] -clap = { version = "4.5.57", features = ["derive"] } -reqwest = "0.13.2" -tokio = { version = "1.49.0", features = ["full"] } diff --git a/crates/mozart/Cargo.toml b/crates/mozart/Cargo.toml new file mode 100644 index 0000000..ebb67d6 --- /dev/null +++ b/crates/mozart/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "mozart" +version.workspace = true +edition.workspace = true + +[dependencies] +clap = { version = "4.5.57", features = ["derive"] } +reqwest = "0.13.2" +tokio = { version = "1.49.0", features = ["full"] } diff --git a/src/commands.rs b/crates/mozart/src/commands.rs index f31dd44..f31dd44 100644 --- a/src/commands.rs +++ b/crates/mozart/src/commands.rs diff --git a/src/commands/about.rs b/crates/mozart/src/commands/about.rs index 833b6c8..833b6c8 100644 --- a/src/commands/about.rs +++ b/crates/mozart/src/commands/about.rs diff --git a/src/commands/archive.rs b/crates/mozart/src/commands/archive.rs index 1fbef6c..1fbef6c 100644 --- a/src/commands/archive.rs +++ b/crates/mozart/src/commands/archive.rs diff --git a/src/commands/audit.rs b/crates/mozart/src/commands/audit.rs index 02b0d8d..02b0d8d 100644 --- a/src/commands/audit.rs +++ b/crates/mozart/src/commands/audit.rs diff --git a/src/commands/browse.rs b/crates/mozart/src/commands/browse.rs index b6cb08f..b6cb08f 100644 --- a/src/commands/browse.rs +++ b/crates/mozart/src/commands/browse.rs diff --git a/src/commands/bump.rs b/crates/mozart/src/commands/bump.rs index 40e01f1..40e01f1 100644 --- a/src/commands/bump.rs +++ b/crates/mozart/src/commands/bump.rs diff --git a/src/commands/check_platform_reqs.rs b/crates/mozart/src/commands/check_platform_reqs.rs index 697b3f6..697b3f6 100644 --- a/src/commands/check_platform_reqs.rs +++ b/crates/mozart/src/commands/check_platform_reqs.rs diff --git a/src/commands/clear_cache.rs b/crates/mozart/src/commands/clear_cache.rs index 051ff4c..051ff4c 100644 --- a/src/commands/clear_cache.rs +++ b/crates/mozart/src/commands/clear_cache.rs diff --git a/src/commands/config.rs b/crates/mozart/src/commands/config.rs index 4434840..4434840 100644 --- a/src/commands/config.rs +++ b/crates/mozart/src/commands/config.rs diff --git a/src/commands/create_project.rs b/crates/mozart/src/commands/create_project.rs index 814d33b..814d33b 100644 --- a/src/commands/create_project.rs +++ b/crates/mozart/src/commands/create_project.rs diff --git a/src/commands/depends.rs b/crates/mozart/src/commands/depends.rs index 33aabc6..33aabc6 100644 --- a/src/commands/depends.rs +++ b/crates/mozart/src/commands/depends.rs diff --git a/src/commands/diagnose.rs b/crates/mozart/src/commands/diagnose.rs index 5a77ba5..5a77ba5 100644 --- a/src/commands/diagnose.rs +++ b/crates/mozart/src/commands/diagnose.rs diff --git a/src/commands/dump_autoload.rs b/crates/mozart/src/commands/dump_autoload.rs index 0eb20c9..0eb20c9 100644 --- a/src/commands/dump_autoload.rs +++ b/crates/mozart/src/commands/dump_autoload.rs diff --git a/src/commands/exec.rs b/crates/mozart/src/commands/exec.rs index 7635058..7635058 100644 --- a/src/commands/exec.rs +++ b/crates/mozart/src/commands/exec.rs diff --git a/src/commands/fund.rs b/crates/mozart/src/commands/fund.rs index bd82306..bd82306 100644 --- a/src/commands/fund.rs +++ b/crates/mozart/src/commands/fund.rs diff --git a/src/commands/global.rs b/crates/mozart/src/commands/global.rs index c4de5e4..c4de5e4 100644 --- a/src/commands/global.rs +++ b/crates/mozart/src/commands/global.rs diff --git a/src/commands/init.rs b/crates/mozart/src/commands/init.rs index 059e494..059e494 100644 --- a/src/commands/init.rs +++ b/crates/mozart/src/commands/init.rs diff --git a/src/commands/install.rs b/crates/mozart/src/commands/install.rs index e839e96..e839e96 100644 --- a/src/commands/install.rs +++ b/crates/mozart/src/commands/install.rs diff --git a/src/commands/licenses.rs b/crates/mozart/src/commands/licenses.rs index d9b0caf..d9b0caf 100644 --- a/src/commands/licenses.rs +++ b/crates/mozart/src/commands/licenses.rs diff --git a/src/commands/outdated.rs b/crates/mozart/src/commands/outdated.rs index 3bbb451..3bbb451 100644 --- a/src/commands/outdated.rs +++ b/crates/mozart/src/commands/outdated.rs diff --git a/src/commands/prohibits.rs b/crates/mozart/src/commands/prohibits.rs index aff1ee0..aff1ee0 100644 --- a/src/commands/prohibits.rs +++ b/crates/mozart/src/commands/prohibits.rs diff --git a/src/commands/reinstall.rs b/crates/mozart/src/commands/reinstall.rs index 08aad44..08aad44 100644 --- a/src/commands/reinstall.rs +++ b/crates/mozart/src/commands/reinstall.rs diff --git a/src/commands/remove.rs b/crates/mozart/src/commands/remove.rs index b444a66..b444a66 100644 --- a/src/commands/remove.rs +++ b/crates/mozart/src/commands/remove.rs diff --git a/src/commands/repository.rs b/crates/mozart/src/commands/repository.rs index 8646c06..8646c06 100644 --- a/src/commands/repository.rs +++ b/crates/mozart/src/commands/repository.rs diff --git a/src/commands/require.rs b/crates/mozart/src/commands/require.rs index 3b8cceb..3b8cceb 100644 --- a/src/commands/require.rs +++ b/crates/mozart/src/commands/require.rs diff --git a/src/commands/run_script.rs b/crates/mozart/src/commands/run_script.rs index e2349a2..e2349a2 100644 --- a/src/commands/run_script.rs +++ b/crates/mozart/src/commands/run_script.rs diff --git a/src/commands/search.rs b/crates/mozart/src/commands/search.rs index 3d2d20f..3d2d20f 100644 --- a/src/commands/search.rs +++ b/crates/mozart/src/commands/search.rs diff --git a/src/commands/self_update.rs b/crates/mozart/src/commands/self_update.rs index 3497d7d..3497d7d 100644 --- a/src/commands/self_update.rs +++ b/crates/mozart/src/commands/self_update.rs diff --git a/src/commands/show.rs b/crates/mozart/src/commands/show.rs index 290a8dd..290a8dd 100644 --- a/src/commands/show.rs +++ b/crates/mozart/src/commands/show.rs diff --git a/src/commands/status.rs b/crates/mozart/src/commands/status.rs index 424f404..424f404 100644 --- a/src/commands/status.rs +++ b/crates/mozart/src/commands/status.rs diff --git a/src/commands/suggests.rs b/crates/mozart/src/commands/suggests.rs index 6a80501..6a80501 100644 --- a/src/commands/suggests.rs +++ b/crates/mozart/src/commands/suggests.rs diff --git a/src/commands/update.rs b/crates/mozart/src/commands/update.rs index 0f1257c..0f1257c 100644 --- a/src/commands/update.rs +++ b/crates/mozart/src/commands/update.rs diff --git a/src/commands/validate.rs b/crates/mozart/src/commands/validate.rs index b76d479..b76d479 100644 --- a/src/commands/validate.rs +++ b/crates/mozart/src/commands/validate.rs diff --git a/src/lib.rs b/crates/mozart/src/lib.rs index 82b6da3..82b6da3 100644 --- a/src/lib.rs +++ b/crates/mozart/src/lib.rs diff --git a/src/main.rs b/crates/mozart/src/main.rs index 289d047..289d047 100644 --- a/src/main.rs +++ b/crates/mozart/src/main.rs |
