running-process 3.2.1__tar.gz → 3.3.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.
- {running_process-3.2.1 → running_process-3.3.0}/Cargo.lock +7 -7
- {running_process-3.2.1 → running_process-3.3.0}/Cargo.toml +1 -1
- {running_process-3.2.1 → running_process-3.3.0}/PKG-INFO +1 -1
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-client/Cargo.toml +1 -1
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/Cargo.toml +3 -3
- {running_process-3.2.1 → running_process-3.3.0}/pyproject.toml +1 -1
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/__init__.py +1 -1
- {running_process-3.2.1 → running_process-3.3.0}/LICENSE +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/README.md +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-client/src/client.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-client/src/lib.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-client/src/paths.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/Cargo.toml +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/console_detect.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/containment.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/lib.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/originator.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/pty/mod.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/pty/native_pty_process.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/pty/pty_posix.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/pty/pty_windows.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/pty/terminal_input.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/public_symbols.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/rust_debug.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/spawn.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/spawn_imp_unix.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/spawn_imp_windows.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/tests.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/containment_test.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/fs_adversarial_test.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/originator_test.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/process_core_test.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/pty_conhost_job_test.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/spawn_test.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-proto/Cargo.toml +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-proto/build.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-proto/proto/daemon.proto +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-proto/src/lib.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/containment.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/daemon_client.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/debug_traces.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/helpers.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/idle_detector.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/lib.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/metrics.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/originator.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/pid_tracking.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/priority.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/process.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/process_tree.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/pty_buffer.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/pty_process.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/public_symbols.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/py_native_process.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/registry.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/signal_bool.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/terminal_input.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/control_churn.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/expect_match.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/idle_detector.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/mod.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/parse_command.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/process_tree.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/pty_buffer.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/pty_process.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/registry.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/signal_bool.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/terminal_input.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/test-watchdog/Cargo.toml +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/crates/test-watchdog/src/lib.rs +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/assets/example.txt +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/cli.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/command_render.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/compat.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/console_encoding.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/daemon.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/dashboard.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/exit_status.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/expect.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/interrupt_handler.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/launch.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/line_iterator.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/output_formatter.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/priority.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/process_utils.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/processor_cli.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/pty.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/running_process.py +0 -0
- {running_process-3.2.1 → running_process-3.3.0}/src/running_process/running_process_manager.py +0 -0
|
@@ -210,7 +210,7 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
210
210
|
|
|
211
211
|
[[package]]
|
|
212
212
|
name = "daemon-trampoline"
|
|
213
|
-
version = "3.
|
|
213
|
+
version = "3.3.0"
|
|
214
214
|
dependencies = [
|
|
215
215
|
"libc",
|
|
216
216
|
"serde",
|
|
@@ -1036,7 +1036,7 @@ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
1036
1036
|
|
|
1037
1037
|
[[package]]
|
|
1038
1038
|
name = "running-process-client"
|
|
1039
|
-
version = "3.
|
|
1039
|
+
version = "3.3.0"
|
|
1040
1040
|
dependencies = [
|
|
1041
1041
|
"dirs",
|
|
1042
1042
|
"interprocess",
|
|
@@ -1047,7 +1047,7 @@ dependencies = [
|
|
|
1047
1047
|
|
|
1048
1048
|
[[package]]
|
|
1049
1049
|
name = "running-process-core"
|
|
1050
|
-
version = "3.
|
|
1050
|
+
version = "3.3.0"
|
|
1051
1051
|
dependencies = [
|
|
1052
1052
|
"libc",
|
|
1053
1053
|
"portable-pty",
|
|
@@ -1061,7 +1061,7 @@ dependencies = [
|
|
|
1061
1061
|
|
|
1062
1062
|
[[package]]
|
|
1063
1063
|
name = "running-process-daemon"
|
|
1064
|
-
version = "3.
|
|
1064
|
+
version = "3.3.0"
|
|
1065
1065
|
dependencies = [
|
|
1066
1066
|
"bytes",
|
|
1067
1067
|
"clap",
|
|
@@ -1088,7 +1088,7 @@ dependencies = [
|
|
|
1088
1088
|
|
|
1089
1089
|
[[package]]
|
|
1090
1090
|
name = "running-process-proto"
|
|
1091
|
-
version = "3.
|
|
1091
|
+
version = "3.3.0"
|
|
1092
1092
|
dependencies = [
|
|
1093
1093
|
"prost",
|
|
1094
1094
|
"prost-build",
|
|
@@ -1098,7 +1098,7 @@ dependencies = [
|
|
|
1098
1098
|
|
|
1099
1099
|
[[package]]
|
|
1100
1100
|
name = "running-process-py"
|
|
1101
|
-
version = "3.
|
|
1101
|
+
version = "3.3.0"
|
|
1102
1102
|
dependencies = [
|
|
1103
1103
|
"interprocess",
|
|
1104
1104
|
"libc",
|
|
@@ -1114,7 +1114,7 @@ dependencies = [
|
|
|
1114
1114
|
|
|
1115
1115
|
[[package]]
|
|
1116
1116
|
name = "runpm-cli"
|
|
1117
|
-
version = "3.
|
|
1117
|
+
version = "3.3.0"
|
|
1118
1118
|
dependencies = [
|
|
1119
1119
|
"anyhow",
|
|
1120
1120
|
"clap",
|
|
@@ -3,7 +3,7 @@ resolver = "2"
|
|
|
3
3
|
members = ["crates/running-process-core", "crates/running-process-proto", "crates/running-process-client", "crates/running-process-py", "crates/test-watchdog"]
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "3.
|
|
6
|
+
version = "3.3.0"
|
|
7
7
|
edition = "2021"
|
|
8
8
|
rust-version = "1.85"
|
|
9
9
|
license = "BSD-3-Clause"
|
|
@@ -9,7 +9,7 @@ homepage.workspace = true
|
|
|
9
9
|
description = "Lightweight synchronous IPC client for the running-process daemon"
|
|
10
10
|
|
|
11
11
|
[dependencies]
|
|
12
|
-
running-process-proto = { path = "../running-process-proto", version = "3.
|
|
12
|
+
running-process-proto = { path = "../running-process-proto", version = "3.3.0" }
|
|
13
13
|
prost = "0.14"
|
|
14
14
|
interprocess = "2"
|
|
15
15
|
dirs = "6"
|
|
@@ -16,10 +16,10 @@ crate-type = ["cdylib", "lib"]
|
|
|
16
16
|
libc = "0.2"
|
|
17
17
|
pyo3 = { workspace = true }
|
|
18
18
|
regex = "1"
|
|
19
|
-
running-process-core = { path = "../running-process-core", version = "3.
|
|
19
|
+
running-process-core = { path = "../running-process-core", version = "3.3.0", features = ["originator-scan"] }
|
|
20
20
|
sysinfo = "0.30"
|
|
21
21
|
winapi = { version = "0.3", features = ["consoleapi", "handleapi", "jobapi2", "processenv", "processthreadsapi", "synchapi", "winbase", "wincon", "winnt", "winuser"] }
|
|
22
|
-
running-process-proto = { path = "../running-process-proto", version = "3.
|
|
23
|
-
running-process-client = { path = "../running-process-client", version = "3.
|
|
22
|
+
running-process-proto = { path = "../running-process-proto", version = "3.3.0" }
|
|
23
|
+
running-process-client = { path = "../running-process-client", version = "3.3.0" }
|
|
24
24
|
prost = "0.14"
|
|
25
25
|
interprocess = "2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/console_detect.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/containment.rs
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/originator.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/pty/pty_posix.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/pty/pty_windows.rs
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/public_symbols.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/rust_debug.rs
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/spawn_imp_unix.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/src/spawn_imp_windows.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/originator_test.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-core/tests/spawn_test.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-proto/proto/daemon.proto
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/containment.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/daemon_client.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/debug_traces.rs
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/idle_detector.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/pid_tracking.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/process_tree.rs
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/pty_process.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/public_symbols.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/py_native_process.rs
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/signal_bool.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/terminal_input.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/control_churn.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/expect_match.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/idle_detector.rs
RENAMED
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/parse_command.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/process_tree.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/pty_buffer.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/pty_process.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/registry.rs
RENAMED
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/crates/running-process-py/src/tests/signal_bool.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{running_process-3.2.1 → running_process-3.3.0}/src/running_process/running_process_manager.py
RENAMED
|
File without changes
|