Pure Erlang implementation of 9p2000 protocol
filesystem fs 9p2000 erlang 9p
at master 21 lines 497 B view raw
1% SPDX-FileCopyrightText: 2025 Łukasz Niemier <~@hauleth.dev> 2% 3% SPDX-License-Identifier: Apache-2.0 4 5{erl_opts, [debug_info]}. 6{deps, [telemetry]}. 7 8{hex, [{doc, ex_doc}]}. 9 10{project_plugins, [ 11 rebar3_ex_doc, 12 rebar3_proper, 13 covertool 14 ]}. 15 16{profiles, [{test, [ 17 {deps, [proper]}, 18 {erl_opts, [nowarn_export_all]} 19 ]}]}. 20 21{ct_opts, [{create_priv_dir, auto_per_run}]}.