act-cli 0.5.1__tar.gz → 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. {act_cli-0.5.1 → act_cli-0.7.0}/Cargo.lock +203 -4
  2. {act_cli-0.5.1 → act_cli-0.7.0}/Cargo.toml +2 -2
  3. {act_cli-0.5.1 → act_cli-0.7.0}/PKG-INFO +1 -1
  4. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/Cargo.toml +3 -0
  5. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/format.rs +237 -104
  6. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/http.rs +158 -63
  7. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/main.rs +206 -59
  8. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/resolve.rs +3 -3
  9. act_cli-0.7.0/act-cli/src/rmcp_bridge.rs +730 -0
  10. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/mod.rs +248 -57
  11. act_cli-0.7.0/act-cli/src/runtime/sessions.rs +112 -0
  12. act_cli-0.7.0/act-cli/wit/deps/act-core/act-core.wit +42 -0
  13. act_cli-0.7.0/act-cli/wit/deps/act-tools/act-tools.wit +97 -0
  14. act_cli-0.7.0/act-cli/wit/deps.lock +11 -0
  15. act_cli-0.7.0/act-cli/wit/deps.toml +7 -0
  16. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/wit/world.wit +1 -1
  17. act_cli-0.5.1/act-cli/src/mcp.rs +0 -384
  18. act_cli-0.5.1/act-cli/wit/deps/act-core/act-core.wit +0 -155
  19. act_cli-0.5.1/act-cli/wit/deps/act-core/act-events.wit +0 -45
  20. act_cli-0.5.1/act-cli/wit/deps/act-core/act-resources.wit +0 -44
  21. act_cli-0.5.1/act-cli/wit/deps.lock +0 -4
  22. act_cli-0.5.1/act-cli/wit/deps.toml +0 -1
  23. {act_cli-0.5.1 → act_cli-0.7.0}/README.md +0 -0
  24. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/README.md +0 -0
  25. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/build.rs +0 -0
  26. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/config.rs +0 -0
  27. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/bindings/mod.rs +0 -0
  28. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/effective.rs +0 -0
  29. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/fs_matcher.rs +0 -0
  30. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/fs_policy.rs +0 -0
  31. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/http_client.rs +0 -0
  32. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/http_policy.rs +0 -0
  33. {act_cli-0.5.1 → act_cli-0.7.0}/act-cli/src/runtime/network.rs +0 -0
  34. {act_cli-0.5.1 → act_cli-0.7.0}/pyproject.toml +0 -0
@@ -4,7 +4,7 @@ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "act-build"
7
- version = "0.5.1"
7
+ version = "0.7.0"
8
8
  dependencies = [
9
9
  "act-types",
10
10
  "anyhow",
@@ -25,7 +25,7 @@ dependencies = [
25
25
 
26
26
  [[package]]
27
27
  name = "act-cli"
28
- version = "0.5.1"
28
+ version = "0.7.0"
29
29
  dependencies = [
30
30
  "act-types",
31
31
  "anyhow",
@@ -44,9 +44,11 @@ dependencies = [
44
44
  "hyper",
45
45
  "indicatif",
46
46
  "oci-client",
47
+ "owo-colors",
47
48
  "path-clean",
48
49
  "regex",
49
50
  "reqwest",
51
+ "rmcp",
50
52
  "serde",
51
53
  "serde_json",
52
54
  "serde_with",
@@ -68,9 +70,9 @@ dependencies = [
68
70
 
69
71
  [[package]]
70
72
  name = "act-types"
71
- version = "0.5.0"
73
+ version = "0.7.0"
72
74
  source = "registry+https://github.com/rust-lang/crates.io-index"
73
- checksum = "8061ce793866b6430317d2f06f9be9a0db3d08127ad398f133bbd0537824e5ca"
75
+ checksum = "c814130fd708c159f2b8ae45f24e9a7de770b4980f8c82f6a6edce3fc0bdcbbd"
74
76
  dependencies = [
75
77
  "base64",
76
78
  "ciborium",
@@ -1487,6 +1489,12 @@ version = "0.5.0"
1487
1489
  source = "registry+https://github.com/rust-lang/crates.io-index"
1488
1490
  checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1489
1491
 
1492
+ [[package]]
1493
+ name = "hermit-abi"
1494
+ version = "0.5.2"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1497
+
1490
1498
  [[package]]
1491
1499
  name = "hex"
1492
1500
  version = "0.4.3"
@@ -1837,6 +1845,23 @@ dependencies = [
1837
1845
  "serde",
1838
1846
  ]
1839
1847
 
1848
+ [[package]]
1849
+ name = "is-terminal"
1850
+ version = "0.4.17"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1853
+ dependencies = [
1854
+ "hermit-abi",
1855
+ "libc",
1856
+ "windows-sys 0.61.2",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "is_ci"
1861
+ version = "1.2.0"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
1864
+
1840
1865
  [[package]]
1841
1866
  name = "is_terminal_polyfill"
1842
1867
  version = "1.70.2"
@@ -2132,6 +2157,18 @@ dependencies = [
2132
2157
  "windows-sys 0.61.2",
2133
2158
  ]
2134
2159
 
2160
+ [[package]]
2161
+ name = "nix"
2162
+ version = "0.31.2"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
2165
+ dependencies = [
2166
+ "bitflags",
2167
+ "cfg-if",
2168
+ "cfg_aliases",
2169
+ "libc",
2170
+ ]
2171
+
2135
2172
  [[package]]
2136
2173
  name = "nu-ansi-term"
2137
2174
  version = "0.50.3"
@@ -2246,6 +2283,16 @@ version = "0.2.0"
2246
2283
  source = "registry+https://github.com/rust-lang/crates.io-index"
2247
2284
  checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2248
2285
 
2286
+ [[package]]
2287
+ name = "owo-colors"
2288
+ version = "4.3.0"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
2291
+ dependencies = [
2292
+ "supports-color 2.1.0",
2293
+ "supports-color 3.0.2",
2294
+ ]
2295
+
2249
2296
  [[package]]
2250
2297
  name = "parking_lot"
2251
2298
  version = "0.12.5"
@@ -2269,6 +2316,12 @@ dependencies = [
2269
2316
  "windows-link",
2270
2317
  ]
2271
2318
 
2319
+ [[package]]
2320
+ name = "pastey"
2321
+ version = "0.2.1"
2322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2323
+ checksum = "b867cad97c0791bbd3aaa6472142568c6c9e8f71937e98379f584cfb0cf35bec"
2324
+
2272
2325
  [[package]]
2273
2326
  name = "path-clean"
2274
2327
  version = "1.0.1"
@@ -2392,6 +2445,20 @@ dependencies = [
2392
2445
  "unicode-ident",
2393
2446
  ]
2394
2447
 
2448
+ [[package]]
2449
+ name = "process-wrap"
2450
+ version = "9.1.0"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "2e842efad9119158434d193c6682e2ebee4b44d6ad801d7b349623b3f57cdf55"
2453
+ dependencies = [
2454
+ "futures",
2455
+ "indexmap 2.14.0",
2456
+ "nix",
2457
+ "tokio",
2458
+ "tracing",
2459
+ "windows",
2460
+ ]
2461
+
2395
2462
  [[package]]
2396
2463
  name = "pulley-interpreter"
2397
2464
  version = "43.0.1"
@@ -2742,6 +2809,43 @@ dependencies = [
2742
2809
  "windows-sys 0.52.0",
2743
2810
  ]
2744
2811
 
2812
+ [[package]]
2813
+ name = "rmcp"
2814
+ version = "1.5.0"
2815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2816
+ checksum = "67d69668de0b0ccd9cc435f700f3b39a7861863cf37a15e1f304ea78688a4826"
2817
+ dependencies = [
2818
+ "async-trait",
2819
+ "base64",
2820
+ "chrono",
2821
+ "futures",
2822
+ "pastey",
2823
+ "pin-project-lite",
2824
+ "process-wrap",
2825
+ "rmcp-macros",
2826
+ "schemars 1.2.1",
2827
+ "serde",
2828
+ "serde_json",
2829
+ "thiserror 2.0.18",
2830
+ "tokio",
2831
+ "tokio-stream",
2832
+ "tokio-util",
2833
+ "tracing",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "rmcp-macros"
2838
+ version = "1.5.0"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "48fdc01c81097b0aed18633e676e269fefa3a78ec1df56b4fe597c1241b92025"
2841
+ dependencies = [
2842
+ "darling 0.23.0",
2843
+ "proc-macro2",
2844
+ "quote",
2845
+ "serde_json",
2846
+ "syn",
2847
+ ]
2848
+
2745
2849
  [[package]]
2746
2850
  name = "rustc-demangle"
2747
2851
  version = "0.1.27"
@@ -2913,12 +3017,26 @@ version = "1.2.1"
2913
3017
  source = "registry+https://github.com/rust-lang/crates.io-index"
2914
3018
  checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2915
3019
  dependencies = [
3020
+ "chrono",
2916
3021
  "dyn-clone",
2917
3022
  "ref-cast",
3023
+ "schemars_derive",
2918
3024
  "serde",
2919
3025
  "serde_json",
2920
3026
  ]
2921
3027
 
3028
+ [[package]]
3029
+ name = "schemars_derive"
3030
+ version = "1.2.1"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
3033
+ dependencies = [
3034
+ "proc-macro2",
3035
+ "quote",
3036
+ "serde_derive_internals",
3037
+ "syn",
3038
+ ]
3039
+
2922
3040
  [[package]]
2923
3041
  name = "scopeguard"
2924
3042
  version = "1.2.0"
@@ -2988,6 +3106,17 @@ dependencies = [
2988
3106
  "syn",
2989
3107
  ]
2990
3108
 
3109
+ [[package]]
3110
+ name = "serde_derive_internals"
3111
+ version = "0.29.1"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
3114
+ dependencies = [
3115
+ "proc-macro2",
3116
+ "quote",
3117
+ "syn",
3118
+ ]
3119
+
2991
3120
  [[package]]
2992
3121
  name = "serde_json"
2993
3122
  version = "1.0.149"
@@ -3213,6 +3342,25 @@ version = "2.6.1"
3213
3342
  source = "registry+https://github.com/rust-lang/crates.io-index"
3214
3343
  checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3215
3344
 
3345
+ [[package]]
3346
+ name = "supports-color"
3347
+ version = "2.1.0"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89"
3350
+ dependencies = [
3351
+ "is-terminal",
3352
+ "is_ci",
3353
+ ]
3354
+
3355
+ [[package]]
3356
+ name = "supports-color"
3357
+ version = "3.0.2"
3358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3359
+ checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
3360
+ dependencies = [
3361
+ "is_ci",
3362
+ ]
3363
+
3216
3364
  [[package]]
3217
3365
  name = "syn"
3218
3366
  version = "2.0.117"
@@ -4391,6 +4539,27 @@ dependencies = [
4391
4539
  "wasmtime-internal-cranelift",
4392
4540
  ]
4393
4541
 
4542
+ [[package]]
4543
+ name = "windows"
4544
+ version = "0.62.2"
4545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4546
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
4547
+ dependencies = [
4548
+ "windows-collections",
4549
+ "windows-core",
4550
+ "windows-future",
4551
+ "windows-numerics",
4552
+ ]
4553
+
4554
+ [[package]]
4555
+ name = "windows-collections"
4556
+ version = "0.3.2"
4557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4558
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
4559
+ dependencies = [
4560
+ "windows-core",
4561
+ ]
4562
+
4394
4563
  [[package]]
4395
4564
  name = "windows-core"
4396
4565
  version = "0.62.2"
@@ -4404,6 +4573,17 @@ dependencies = [
4404
4573
  "windows-strings",
4405
4574
  ]
4406
4575
 
4576
+ [[package]]
4577
+ name = "windows-future"
4578
+ version = "0.3.2"
4579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4580
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
4581
+ dependencies = [
4582
+ "windows-core",
4583
+ "windows-link",
4584
+ "windows-threading",
4585
+ ]
4586
+
4407
4587
  [[package]]
4408
4588
  name = "windows-implement"
4409
4589
  version = "0.60.2"
@@ -4432,6 +4612,16 @@ version = "0.2.1"
4432
4612
  source = "registry+https://github.com/rust-lang/crates.io-index"
4433
4613
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4434
4614
 
4615
+ [[package]]
4616
+ name = "windows-numerics"
4617
+ version = "0.3.1"
4618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4619
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
4620
+ dependencies = [
4621
+ "windows-core",
4622
+ "windows-link",
4623
+ ]
4624
+
4435
4625
  [[package]]
4436
4626
  name = "windows-result"
4437
4627
  version = "0.4.1"
@@ -4543,6 +4733,15 @@ dependencies = [
4543
4733
  "windows_x86_64_msvc 0.53.1",
4544
4734
  ]
4545
4735
 
4736
+ [[package]]
4737
+ name = "windows-threading"
4738
+ version = "0.2.1"
4739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4740
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
4741
+ dependencies = [
4742
+ "windows-link",
4743
+ ]
4744
+
4546
4745
  [[package]]
4547
4746
  name = "windows_aarch64_gnullvm"
4548
4747
  version = "0.42.2"
@@ -3,7 +3,7 @@ members = ["act-cli"]
3
3
  resolver = "3"
4
4
 
5
5
  [workspace.package]
6
- version = "0.5.1"
6
+ version = "0.7.0"
7
7
  edition = "2024"
8
8
  license = "MIT OR Apache-2.0"
9
9
  repository = "https://github.com/actcore/act-cli"
@@ -11,7 +11,7 @@ homepage = "https://actcore.dev"
11
11
  readme = "README.md"
12
12
 
13
13
  [workspace.dependencies]
14
- act-types = "0.5"
14
+ act-types = "0.7"
15
15
  wasmparser = "0.247.0"
16
16
 
17
17
  [profile.release]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: act-cli
3
- Version: 0.5.1
3
+ Version: 0.7.0
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -50,10 +50,13 @@ wasmtime-wasi-http = { version = "43", default-features = false, features = ["p2
50
50
  http = "1"
51
51
  http-body-util = "0.1"
52
52
  hyper = "1"
53
+ rmcp = { version = "1.5", features = ["server", "transport-io"] }
53
54
  bytes = "1"
54
55
  cidr = "0.3"
55
56
  globset = "0.4"
56
57
  path-clean = "1"
58
+ owo-colors = { version = "4.3.0", features = ["supports-colors"] }
57
59
 
58
60
  [dev-dependencies]
59
61
  tempfile = "3"
62
+ rmcp = { version = "1.5", features = ["client", "transport-child-process"] }