├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── access_list.json ├── bookmarks.json ├── resources ├── app-conf.json └── firefox_proxy_configuration.png ├── src ├── client │ ├── archive_caching_client.rs │ ├── cache_item.rs │ ├── caching_client.rs │ ├── chunk_caching_client.rs │ ├── client_harness.rs │ ├── command │ │ ├── access_checker │ │ │ ├── mod.rs │ │ │ └── update_access_checker_command.rs │ │ ├── bookmark_resolver │ │ │ ├── mod.rs │ │ │ └── update_bookmark_resolver_command.rs │ │ ├── chunk │ │ │ ├── create_chunk_command.rs │ │ │ └── mod.rs │ │ ├── command_details.rs │ │ ├── error.rs │ │ ├── executor.rs │ │ ├── graph │ │ │ ├── create_graph_entry_command.rs │ │ │ ├── get_graph_entry_command.rs │ │ │ └── mod.rs │ │ ├── mod.rs │ │ ├── pointer │ │ │ ├── check_pointer_command.rs │ │ │ ├── create_pointer_command.rs │ │ │ ├── get_pointer_command.rs │ │ │ ├── mod.rs │ │ │ └── update_pointer_command.rs │ │ ├── public_data │ │ │ ├── create_public_data_command.rs │ │ │ └── mod.rs │ │ ├── register │ │ │ ├── create_register_command.rs │ │ │ ├── get_register_command.rs │ │ │ ├── mod.rs │ │ │ └── update_register_command.rs │ │ └── scratchpad │ │ │ ├── create_private_scratchpad_command.rs │ │ │ ├── create_public_scratchpad_command.rs │ │ │ ├── get_scratchpad_command.rs │ │ │ ├── mod.rs │ │ │ ├── update_private_scratchpad_command.rs │ │ │ └── update_public_scratchpad_command.rs │ ├── graph_entry_caching_client.rs │ ├── mod.rs │ ├── pointer_caching_client.rs │ ├── public_archive_caching_client.rs │ ├── public_data_caching_client.rs │ ├── register_caching_client.rs │ ├── scratchpad_caching_client.rs │ └── tarchive_caching_client.rs ├── config │ ├── anttp_config.rs │ ├── app_config.rs │ └── mod.rs ├── controller │ ├── chunk_controller.rs │ ├── command_controller.rs │ ├── connect_controller.rs │ ├── file_controller.rs │ ├── graph_controller.rs │ ├── mod.rs │ ├── pointer_controller.rs │ ├── private_scratchpad_controller.rs │ ├── public_archive_controller.rs │ ├── public_data_controller.rs │ ├── public_scratchpad_controller.rs │ └── register_controller.rs ├── error │ ├── archive_error.rs │ ├── chunk_error.rs │ ├── graph_error.rs │ ├── mod.rs │ ├── pointer_error.rs │ ├── public_archive_error.rs │ ├── public_data_error.rs │ ├── register_error.rs │ └── scratchpad_error.rs ├── lib.rs ├── main.rs ├── model │ ├── access_list.rs │ ├── archive.rs │ ├── bookmark_list.rs │ ├── mod.rs │ └── path_detail.rs └── service │ ├── access_checker.rs │ ├── archive_helper.rs │ ├── bookmark_resolver.rs │ ├── chunk_service.rs │ ├── chunk_stream.rs │ ├── command_service.rs │ ├── file_service.rs │ ├── graph_service.rs │ ├── header_builder.rs │ ├── mod.rs │ ├── pointer_service.rs │ ├── public_archive_service.rs │ ├── public_data_service.rs │ ├── register_service.rs │ ├── resolver_service.rs │ └── scratchpad_service.rs └── test └── performance ├── README.md ├── results ├── 2025-04-11 │ ├── localhost-autonomi-http.txt │ └── localhost-large-autonomi-http.txt ├── 2025-04-15 │ └── localhost-large-autonomi-http.txt └── 2025-06-30 │ └── localhost-autonomi-http.txt └── src ├── localhost-autonomi-http.js ├── localhost-large-autonomi-http.js ├── localhost-small-autonomi-http.js ├── localhost-tarchive-autonomi-http.js └── localhost-vlarge-autonomi-http.js /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/README.md -------------------------------------------------------------------------------- /access_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/access_list.json -------------------------------------------------------------------------------- /bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/bookmarks.json -------------------------------------------------------------------------------- /resources/app-conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/resources/app-conf.json -------------------------------------------------------------------------------- /resources/firefox_proxy_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/resources/firefox_proxy_configuration.png -------------------------------------------------------------------------------- /src/client/archive_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/archive_caching_client.rs -------------------------------------------------------------------------------- /src/client/cache_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/cache_item.rs -------------------------------------------------------------------------------- /src/client/caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/caching_client.rs -------------------------------------------------------------------------------- /src/client/chunk_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/chunk_caching_client.rs -------------------------------------------------------------------------------- /src/client/client_harness.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/client_harness.rs -------------------------------------------------------------------------------- /src/client/command/access_checker/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod update_access_checker_command; -------------------------------------------------------------------------------- /src/client/command/access_checker/update_access_checker_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/access_checker/update_access_checker_command.rs -------------------------------------------------------------------------------- /src/client/command/bookmark_resolver/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod update_bookmark_resolver_command; -------------------------------------------------------------------------------- /src/client/command/bookmark_resolver/update_bookmark_resolver_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/bookmark_resolver/update_bookmark_resolver_command.rs -------------------------------------------------------------------------------- /src/client/command/chunk/create_chunk_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/chunk/create_chunk_command.rs -------------------------------------------------------------------------------- /src/client/command/chunk/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod create_chunk_command; -------------------------------------------------------------------------------- /src/client/command/command_details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/command_details.rs -------------------------------------------------------------------------------- /src/client/command/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/error.rs -------------------------------------------------------------------------------- /src/client/command/executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/executor.rs -------------------------------------------------------------------------------- /src/client/command/graph/create_graph_entry_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/graph/create_graph_entry_command.rs -------------------------------------------------------------------------------- /src/client/command/graph/get_graph_entry_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/graph/get_graph_entry_command.rs -------------------------------------------------------------------------------- /src/client/command/graph/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/graph/mod.rs -------------------------------------------------------------------------------- /src/client/command/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/mod.rs -------------------------------------------------------------------------------- /src/client/command/pointer/check_pointer_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/pointer/check_pointer_command.rs -------------------------------------------------------------------------------- /src/client/command/pointer/create_pointer_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/pointer/create_pointer_command.rs -------------------------------------------------------------------------------- /src/client/command/pointer/get_pointer_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/pointer/get_pointer_command.rs -------------------------------------------------------------------------------- /src/client/command/pointer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/pointer/mod.rs -------------------------------------------------------------------------------- /src/client/command/pointer/update_pointer_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/pointer/update_pointer_command.rs -------------------------------------------------------------------------------- /src/client/command/public_data/create_public_data_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/public_data/create_public_data_command.rs -------------------------------------------------------------------------------- /src/client/command/public_data/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod create_public_data_command; -------------------------------------------------------------------------------- /src/client/command/register/create_register_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/register/create_register_command.rs -------------------------------------------------------------------------------- /src/client/command/register/get_register_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/register/get_register_command.rs -------------------------------------------------------------------------------- /src/client/command/register/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/register/mod.rs -------------------------------------------------------------------------------- /src/client/command/register/update_register_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/register/update_register_command.rs -------------------------------------------------------------------------------- /src/client/command/scratchpad/create_private_scratchpad_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/scratchpad/create_private_scratchpad_command.rs -------------------------------------------------------------------------------- /src/client/command/scratchpad/create_public_scratchpad_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/scratchpad/create_public_scratchpad_command.rs -------------------------------------------------------------------------------- /src/client/command/scratchpad/get_scratchpad_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/scratchpad/get_scratchpad_command.rs -------------------------------------------------------------------------------- /src/client/command/scratchpad/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/scratchpad/mod.rs -------------------------------------------------------------------------------- /src/client/command/scratchpad/update_private_scratchpad_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/scratchpad/update_private_scratchpad_command.rs -------------------------------------------------------------------------------- /src/client/command/scratchpad/update_public_scratchpad_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/command/scratchpad/update_public_scratchpad_command.rs -------------------------------------------------------------------------------- /src/client/graph_entry_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/graph_entry_caching_client.rs -------------------------------------------------------------------------------- /src/client/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/mod.rs -------------------------------------------------------------------------------- /src/client/pointer_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/pointer_caching_client.rs -------------------------------------------------------------------------------- /src/client/public_archive_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/public_archive_caching_client.rs -------------------------------------------------------------------------------- /src/client/public_data_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/public_data_caching_client.rs -------------------------------------------------------------------------------- /src/client/register_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/register_caching_client.rs -------------------------------------------------------------------------------- /src/client/scratchpad_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/scratchpad_caching_client.rs -------------------------------------------------------------------------------- /src/client/tarchive_caching_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/client/tarchive_caching_client.rs -------------------------------------------------------------------------------- /src/config/anttp_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/config/anttp_config.rs -------------------------------------------------------------------------------- /src/config/app_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/config/app_config.rs -------------------------------------------------------------------------------- /src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/config/mod.rs -------------------------------------------------------------------------------- /src/controller/chunk_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/chunk_controller.rs -------------------------------------------------------------------------------- /src/controller/command_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/command_controller.rs -------------------------------------------------------------------------------- /src/controller/connect_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/connect_controller.rs -------------------------------------------------------------------------------- /src/controller/file_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/file_controller.rs -------------------------------------------------------------------------------- /src/controller/graph_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/graph_controller.rs -------------------------------------------------------------------------------- /src/controller/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/mod.rs -------------------------------------------------------------------------------- /src/controller/pointer_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/pointer_controller.rs -------------------------------------------------------------------------------- /src/controller/private_scratchpad_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/private_scratchpad_controller.rs -------------------------------------------------------------------------------- /src/controller/public_archive_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/public_archive_controller.rs -------------------------------------------------------------------------------- /src/controller/public_data_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/public_data_controller.rs -------------------------------------------------------------------------------- /src/controller/public_scratchpad_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/public_scratchpad_controller.rs -------------------------------------------------------------------------------- /src/controller/register_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/controller/register_controller.rs -------------------------------------------------------------------------------- /src/error/archive_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/archive_error.rs -------------------------------------------------------------------------------- /src/error/chunk_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/chunk_error.rs -------------------------------------------------------------------------------- /src/error/graph_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/graph_error.rs -------------------------------------------------------------------------------- /src/error/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/mod.rs -------------------------------------------------------------------------------- /src/error/pointer_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/pointer_error.rs -------------------------------------------------------------------------------- /src/error/public_archive_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/public_archive_error.rs -------------------------------------------------------------------------------- /src/error/public_data_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/public_data_error.rs -------------------------------------------------------------------------------- /src/error/register_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/register_error.rs -------------------------------------------------------------------------------- /src/error/scratchpad_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/error/scratchpad_error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/model/access_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/model/access_list.rs -------------------------------------------------------------------------------- /src/model/archive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/model/archive.rs -------------------------------------------------------------------------------- /src/model/bookmark_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/model/bookmark_list.rs -------------------------------------------------------------------------------- /src/model/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/model/mod.rs -------------------------------------------------------------------------------- /src/model/path_detail.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/model/path_detail.rs -------------------------------------------------------------------------------- /src/service/access_checker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/access_checker.rs -------------------------------------------------------------------------------- /src/service/archive_helper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/archive_helper.rs -------------------------------------------------------------------------------- /src/service/bookmark_resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/bookmark_resolver.rs -------------------------------------------------------------------------------- /src/service/chunk_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/chunk_service.rs -------------------------------------------------------------------------------- /src/service/chunk_stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/chunk_stream.rs -------------------------------------------------------------------------------- /src/service/command_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/command_service.rs -------------------------------------------------------------------------------- /src/service/file_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/file_service.rs -------------------------------------------------------------------------------- /src/service/graph_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/graph_service.rs -------------------------------------------------------------------------------- /src/service/header_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/header_builder.rs -------------------------------------------------------------------------------- /src/service/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/mod.rs -------------------------------------------------------------------------------- /src/service/pointer_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/pointer_service.rs -------------------------------------------------------------------------------- /src/service/public_archive_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/public_archive_service.rs -------------------------------------------------------------------------------- /src/service/public_data_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/public_data_service.rs -------------------------------------------------------------------------------- /src/service/register_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/register_service.rs -------------------------------------------------------------------------------- /src/service/resolver_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/resolver_service.rs -------------------------------------------------------------------------------- /src/service/scratchpad_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/src/service/scratchpad_service.rs -------------------------------------------------------------------------------- /test/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/README.md -------------------------------------------------------------------------------- /test/performance/results/2025-04-11/localhost-autonomi-http.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/results/2025-04-11/localhost-autonomi-http.txt -------------------------------------------------------------------------------- /test/performance/results/2025-04-11/localhost-large-autonomi-http.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/results/2025-04-11/localhost-large-autonomi-http.txt -------------------------------------------------------------------------------- /test/performance/results/2025-04-15/localhost-large-autonomi-http.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/results/2025-04-15/localhost-large-autonomi-http.txt -------------------------------------------------------------------------------- /test/performance/results/2025-06-30/localhost-autonomi-http.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/results/2025-06-30/localhost-autonomi-http.txt -------------------------------------------------------------------------------- /test/performance/src/localhost-autonomi-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/src/localhost-autonomi-http.js -------------------------------------------------------------------------------- /test/performance/src/localhost-large-autonomi-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/src/localhost-large-autonomi-http.js -------------------------------------------------------------------------------- /test/performance/src/localhost-small-autonomi-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/src/localhost-small-autonomi-http.js -------------------------------------------------------------------------------- /test/performance/src/localhost-tarchive-autonomi-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/src/localhost-tarchive-autonomi-http.js -------------------------------------------------------------------------------- /test/performance/src/localhost-vlarge-autonomi-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traktion/AntTP/HEAD/test/performance/src/localhost-vlarge-autonomi-http.js --------------------------------------------------------------------------------