{"id":19998910,"url":"https://github.com/hanaasagi/tokio-splice","last_synced_at":"2025-06-10T12:36:17.757Z","repository":{"id":160990391,"uuid":"635693195","full_name":"Hanaasagi/tokio-splice","owner":"Hanaasagi","description":"splice(2) based `copy_bidirectional` in tokio","archived":false,"fork":false,"pushed_at":"2025-02-22T15:20:06.000Z","size":29,"stargazers_count":21,"open_issues_count":3,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-02T22:44:11.581Z","etag":null,"topics":["splice","tokio"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/tokio-splice","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Hanaasagi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-03T08:53:04.000Z","updated_at":"2025-03-08T04:17:39.000Z","dependencies_parsed_at":"2023-05-27T16:15:34.492Z","dependency_job_id":null,"html_url":"https://github.com/Hanaasagi/tokio-splice","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Ftokio-splice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Ftokio-splice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Ftokio-splice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Hanaasagi%2Ftokio-splice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Hanaasagi","download_url":"https://codeload.github.com/Hanaasagi/tokio-splice/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252349436,"owners_count":21733833,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["splice","tokio"],"created_at":"2024-11-13T05:09:51.804Z","updated_at":"2025-05-04T14:31:12.025Z","avatar_url":"https://github.com/Hanaasagi.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tokio-splice\n\nImplemented splice(2) based bidirectional data transmission in tokio-rs.\nJust like [`tokio::io::copy_bidirectional`](https://docs.rs/tokio/latest/tokio/io/fn.copy_bidirectional.html).\n\n## API\n\n[API Doc](https://docs.rs/tokio-splice)\n\n## Example\n\nThe following code implements a TCP proxy that forwards traffic on port 8989 to example.com.\n\n```Rust\nuse std::io::Result;\nuse tokio::net::{TcpListener, TcpStream};\nuse tokio_splice::zero_copy_bidirectional;\n\nasync fn forwarding(mut stream1: TcpStream) -\u003e Result\u003c()\u003e {\n    let mut stream2 = TcpStream::connect(\"93.184.216.34:80\").await?;\n    zero_copy_bidirectional(\u0026mut stream1, \u0026mut stream2).await?;\n    Ok(())\n}\n\nasync fn serve() -\u003e Result\u003c()\u003e {\n    let listener = TcpListener::bind(\"127.0.0.1:8989\").await?;\n\n    loop {\n        let (conn, addr) = listener.accept().await?;\n        println!(\"process incoming connection from {addr}\");\n        tokio::spawn(forwarding(conn));\n    }\n}\n\n#[tokio::main(flavor = \"current_thread\")]\nasync fn main() -\u003e Result\u003c()\u003e {\n    println!(\"PID is {}\", std::process::id());\n    tokio::select! {\n        res = serve() =\u003e {\n            if let Err(err) = res {\n                println!(\"serve failed {err}\");\n            }\n        }\n        _ = tokio::signal::ctrl_c() =\u003e {\n            println!(\"shutting down\");\n        }\n    }\n\n    Ok(())\n}\n```\n\n## Changelog\n\n- 0.2.1:\n  - Fix the maximum value of the `size_t` type. Closes: https://github.com/Hanaasagi/tokio-splice/issues/2\n\n## Benchmark\n\n10 VUs, 10 seconds, work as a http proxy to download 100Mb file.\n\n### `tokio::io::copy_bidirectional`\n\n```\n     data_received..................: 13 GB 1.2 GB/s\n     data_sent......................: 14 kB 1.3 kB/s\n     http_req_blocked...............: avg=209.7µs  min=94.42µs  med=171.66µs max=707.76µs p(90)=335.38µs p(95)=444.93µs\n     http_req_connecting............: avg=131.44µs min=55.73µs  med=105.87µs max=466.25µs p(90)=216.11µs p(95)=284.09µs\n     http_req_duration..............: avg=803.62ms min=310.7ms  med=811.17ms max=960.74ms p(90)=873.55ms p(95)=902.29ms\n       { expected_response:true }...: avg=803.62ms min=310.7ms  med=811.17ms max=960.74ms p(90)=873.55ms p(95)=902.29ms\n     http_req_failed................: 0.00% ✓ 0         ✗ 128\n     http_req_receiving.............: avg=740.73ms min=255.61ms med=739.93ms max=955.05ms p(90)=813.65ms p(95)=878.69ms\n     http_req_sending...............: avg=47.54µs  min=18.85µs  med=41.38µs  max=168.45µs p(90)=71.9µs   p(95)=83.85µs\n     http_req_tls_handshaking.......: avg=0s       min=0s       med=0s       max=0s       p(90)=0s       p(95)=0s\n     http_req_waiting...............: avg=62.84ms  min=973.15µs med=65.64ms  max=107.5ms  p(90)=79.21ms  p(95)=83.39ms\n     http_reqs......................: 128   12.272712/s\n     iteration_duration.............: avg=803.98ms min=310.95ms med=811.51ms max=961.06ms p(90)=873.97ms p(95)=902.63ms\n     iterations.....................: 128   12.272712/s\n     vus............................: 10    min=10      max=10\n     vus_max........................: 10    min=10      max=10\n```\n\n\u003cdetails\u003e\n    \u003csummary\u003eFull process statistics with \u003ccode\u003epidstat -r -w -u -d -p\u003c/code\u003e\u003c/summary\u003e\n    \n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:11 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:11 PM  1000     38138    0.00    0.00    0.00    0.00    0.01    14  proxy\n\n    11:48:11 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:11 PM  1000     38138      6.56      0.00    3840    2540   0.01  proxy\n\n    11:48:11 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:11 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:11 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:11 PM  1000     38138      0.01      0.00  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:12 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:12 PM  1000     38138    0.01    0.02    0.00    0.00    0.02    10  proxy\n\n    11:48:12 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:12 PM  1000     38138      6.60      0.00    3976    2668   0.01  proxy\n\n    11:48:12 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:12 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:12 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:12 PM  1000     38138      0.01      0.01  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:13 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:13 PM  1000     38138    0.02    0.14    0.00    0.00    0.16    10  proxy\n\n    11:48:13 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:13 PM  1000     38138      6.60      0.00    3976    2668   0.01  proxy\n\n    11:48:13 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:13 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:13 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:13 PM  1000     38138      0.01      0.04  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:14 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:14 PM  1000     38138    0.03    0.25    0.00    0.00    0.29    13  proxy\n\n    11:48:14 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:14 PM  1000     38138      6.59      0.00    3976    2668   0.01  proxy\n\n    11:48:14 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:14 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:14 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:14 PM  1000     38138      0.01      0.06  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:15 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:15 PM  1000     38138    0.05    0.37    0.00    0.00    0.42     9  proxy\n\n    11:48:15 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:15 PM  1000     38138      6.58      0.00    3976    2668   0.01  proxy\n\n    11:48:15 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:15 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:15 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:15 PM  1000     38138      0.01      0.10  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:16 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:16 PM  1000     38138    0.06    0.49    0.00    0.00    0.55     3  proxy\n\n    11:48:16 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:16 PM  1000     38138      6.57      0.00    3976    2668   0.01  proxy\n\n    11:48:16 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:16 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:16 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:16 PM  1000     38138      0.01      0.22  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:17 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:17 PM  1000     38138    0.08    0.61    0.00    0.00    0.68     5  proxy\n\n    11:48:17 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:17 PM  1000     38138      6.56      0.00    3976    2668   0.01  proxy\n\n    11:48:17 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:17 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:17 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:17 PM  1000     38138      0.01      0.27  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:18 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:18 PM  1000     38138    0.09    0.73    0.00    0.00    0.82     4  proxy\n\n    11:48:18 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:18 PM  1000     38138      6.55      0.00    3976    2668   0.01  proxy\n\n    11:48:18 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:18 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:18 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:18 PM  1000     38138      0.01      0.30  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:19 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:19 PM  1000     38138    0.10    0.84    0.00    0.00    0.95     5  proxy\n\n    11:48:19 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:19 PM  1000     38138      6.54      0.00    3976    2668   0.01  proxy\n\n    11:48:19 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:19 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:19 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:19 PM  1000     38138      0.01      0.34  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:20 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:20 PM  1000     38138    0.12    0.96    0.00    0.00    1.08    14  proxy\n\n    11:48:20 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:20 PM  1000     38138      6.54      0.00    3976    2668   0.01  proxy\n\n    11:48:20 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:20 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:20 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:20 PM  1000     38138      0.01      0.36  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:21 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:21 PM  1000     38138    0.13    1.07    0.00    0.00    1.21     6  proxy\n\n    11:48:21 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:21 PM  1000     38138      6.53      0.00    3976    2668   0.01  proxy\n\n    11:48:21 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:21 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:21 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:21 PM  1000     38138      0.01      0.41  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:22 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:22 PM  1000     38138    0.15    1.19    0.00    0.00    1.34     4  proxy\n\n    11:48:22 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:22 PM  1000     38138      6.52      0.00    3976    2668   0.01  proxy\n\n    11:48:22 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:22 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:22 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:22 PM  1000     38138      0.01      0.45  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:48:23 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:48:23 PM  1000     38138    0.15    1.22    0.00    0.00    1.37     5  proxy\n\n    11:48:23 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:48:23 PM  1000     38138      6.51      0.00    3976    2668   0.01  proxy\n\n    11:48:23 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:48:23 PM  1000     38138      0.00      0.05      0.00       0  proxy\n\n    11:48:23 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:48:23 PM  1000     38138      0.01      0.47  proxy\n\n\u003c/details\u003e\n\n### `zero_copy_bidirectional`\n\n```\n     data_received..................: 21 GB 2.0 GB/s\n     data_sent......................: 22 kB 2.2 kB/s\n     http_req_blocked...............: avg=1.04ms   min=120.68µs med=595.6µs  max=41.71ms  p(90)=1.33ms   p(95)=1.92ms\n     http_req_connecting............: avg=614.87µs min=70.12µs  med=388.35µs max=10.87ms  p(90)=852.66µs p(95)=1.24ms\n     http_req_duration..............: avg=487.26ms min=292.38ms med=469.17ms max=844.43ms p(90)=621.37ms p(95)=692.62ms\n       { expected_response:true }...: avg=487.26ms min=292.38ms med=469.17ms max=844.43ms p(90)=621.37ms p(95)=692.62ms\n     http_req_failed................: 0.00% ✓ 0         ✗ 208\n     http_req_receiving.............: avg=451.06ms min=265.68ms med=431.16ms max=839.83ms p(90)=572.64ms p(95)=684.98ms\n     http_req_sending...............: avg=743.45µs min=29.89µs  med=129.48µs max=44.06ms  p(90)=253.81µs p(95)=322.91µs\n     http_req_tls_handshaking.......: avg=0s       min=0s       med=0s       max=0s       p(90)=0s       p(95)=0s\n     http_req_waiting...............: avg=35.45ms  min=352.97µs med=34.74ms  max=97.29ms  p(90)=64.27ms  p(95)=73.75ms\n     http_reqs......................: 208   20.300179/s\n     iteration_duration.............: avg=489.25ms min=293.18ms med=470.63ms max=845.03ms p(90)=622.59ms p(95)=693.61ms\n     iterations.....................: 208   20.300179/s\n     vus............................: 10    min=10      max=10\n     vus_max........................: 10    min=10      max=10\n\n```\n\n\u003cdetails\u003e\n    \u003csummary\u003eFull process statistics with \u003ccode\u003epidstat -r -w -u -d -p\u003c/code\u003e\u003c/summary\u003e\n    \n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:23 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:23 PM  1000     59138    0.00    0.00    0.00    0.00    0.00     4  proxy\n\n    11:49:23 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:23 PM  1000     59138      6.52      0.00    3836    2432   0.01  proxy\n\n    11:49:23 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:23 PM  1000     59138      0.00     27.11      0.01       0  proxy\n\n    11:49:23 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:23 PM  1000     59138      0.01      0.00  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:24 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:24 PM  1000     59138    0.00    0.01    0.00    0.00    0.01     1  proxy\n\n    11:49:24 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:24 PM  1000     59138      6.52      0.00    3836    2432   0.01  proxy\n\n    11:49:24 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:24 PM  1000     59138      0.00     27.08      0.01       0  proxy\n\n    11:49:24 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:24 PM  1000     59138      0.06      0.04  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:25 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:25 PM  1000     59138    0.02    0.08    0.00    0.01    0.10     2  proxy\n\n    11:49:25 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:25 PM  1000     59138      6.51      0.00    3836    2432   0.01  proxy\n\n    11:49:25 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:25 PM  1000     59138      0.00     27.04      0.01       0  proxy\n\n    11:49:25 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:25 PM  1000     59138      0.53      0.23  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:26 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:26 PM  1000     59138    0.04    0.18    0.00    0.01    0.21     1  proxy\n\n    11:49:26 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:26 PM  1000     59138      6.50      0.00    3836    2432   0.01  proxy\n\n    11:49:26 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:26 PM  1000     59138      0.00     27.01      0.01       0  proxy\n\n    11:49:26 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:26 PM  1000     59138      0.80      0.37  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:27 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:27 PM  1000     59138    0.05    0.28    0.00    0.01    0.32    12  proxy\n\n    11:49:27 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:27 PM  1000     59138      6.49      0.00    3836    2432   0.01  proxy\n\n    11:49:27 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:27 PM  1000     59138      0.00     26.98      0.01       0  proxy\n\n    11:49:27 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:27 PM  1000     59138      1.67      0.58  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:28 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:28 PM  1000     59138    0.06    0.37    0.00    0.02    0.44    12  proxy\n\n    11:49:28 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:28 PM  1000     59138      6.49      0.00    3836    2432   0.01  proxy\n\n    11:49:28 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:28 PM  1000     59138      0.00     26.94      0.01       0  proxy\n\n    11:49:28 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:28 PM  1000     59138      1.77      0.82  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:29 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:29 PM  1000     59138    0.08    0.46    0.00    0.03    0.54    12  proxy\n\n    11:49:29 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:29 PM  1000     59138      6.48      0.00    3836    2432   0.01  proxy\n\n    11:49:29 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:29 PM  1000     59138      0.00     26.91      0.01       0  proxy\n\n    11:49:29 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:29 PM  1000     59138      2.38      1.43  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:30 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:30 PM  1000     59138    0.09    0.56    0.00    0.04    0.65    12  proxy\n\n    11:49:30 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:30 PM  1000     59138      6.47      0.00    3836    2432   0.01  proxy\n\n    11:49:30 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:30 PM  1000     59138      0.00     26.88      0.01       0  proxy\n\n    11:49:30 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:30 PM  1000     59138      2.97      1.71  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:31 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:31 PM  1000     59138    0.10    0.65    0.00    0.05    0.75     6  proxy\n\n    11:49:31 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:31 PM  1000     59138      6.46      0.00    3836    2432   0.01  proxy\n\n    11:49:31 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:31 PM  1000     59138      0.00     26.85      0.01       0  proxy\n\n    11:49:31 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:31 PM  1000     59138      3.71      1.96  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:32 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:32 PM  1000     59138    0.12    0.75    0.00    0.05    0.87    12  proxy\n\n    11:49:32 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:32 PM  1000     59138      6.45      0.00    3836    2432   0.01  proxy\n\n    11:49:32 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:32 PM  1000     59138      0.00     26.81      0.01       0  proxy\n\n    11:49:32 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:32 PM  1000     59138      3.82      2.08  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:33 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:33 PM  1000     59138    0.13    0.84    0.00    0.06    0.98     6  proxy\n\n    11:49:33 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:33 PM  1000     59138      6.45      0.00    3836    2432   0.01  proxy\n\n    11:49:33 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:33 PM  1000     59138      0.00     26.78      0.01       0  proxy\n\n    11:49:33 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:33 PM  1000     59138      3.99      2.39  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:34 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:34 PM  1000     59138    0.14    0.93    0.00    0.06    1.07     8  proxy\n\n    11:49:34 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:34 PM  1000     59138      6.44      0.00    3836    2432   0.01  proxy\n\n    11:49:34 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:34 PM  1000     59138      0.00     26.75      0.01       0  proxy\n\n    11:49:34 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:34 PM  1000     59138      4.35      2.50  proxy\n    Linux 6.2.13-arch1-1 (misaka) \t05/03/2023 \t_x86_64_\t(16 CPU)\n\n    11:49:35 PM   UID       PID    %usr %system  %guest   %wait    %CPU   CPU  Command\n    11:49:35 PM  1000     59138    0.14    0.93    0.00    0.06    1.07     5  proxy\n\n    11:49:35 PM   UID       PID  minflt/s  majflt/s     VSZ     RSS   %MEM  Command\n    11:49:35 PM  1000     59138      6.43      0.00    3836    2432   0.01  proxy\n\n    11:49:35 PM   UID       PID   kB_rd/s   kB_wr/s kB_ccwr/s iodelay  Command\n    11:49:35 PM  1000     59138      0.00     26.72      0.01       0  proxy\n\n    11:49:35 PM   UID       PID   cswch/s nvcswch/s  Command\n    11:49:35 PM  1000     59138      4.44      2.49  proxy\n\n\u003c/detail\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanaasagi%2Ftokio-splice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhanaasagi%2Ftokio-splice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanaasagi%2Ftokio-splice/lists"}