├── .github └── workflows │ ├── publish.yml │ ├── release.yml │ └── web.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── oranda.json └── src ├── inf.rs ├── lib.rs ├── main.rs └── plugin.rs /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/.github/workflows/web.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/README.md -------------------------------------------------------------------------------- /oranda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/oranda.json -------------------------------------------------------------------------------- /src/inf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/src/inf.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fennewald/nu_plugin_net/HEAD/src/plugin.rs --------------------------------------------------------------------------------