├── .github ├── actions │ ├── build-nix │ │ └── action.yml │ └── install-nix │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── nix.yml │ └── wit-deps.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── ORG_CODE_OF_CONDUCT.md ├── README.md ├── crates └── wit-deps │ ├── Cargo.toml │ └── src │ ├── cache.rs │ ├── digest.rs │ ├── lib.rs │ ├── lock.rs │ └── manifest.rs ├── examples ├── github │ ├── main.rs │ └── wit │ │ ├── deps.lock │ │ ├── deps.toml │ │ ├── deps │ │ ├── cli │ │ │ ├── command.wit │ │ │ ├── environment.wit │ │ │ ├── exit.wit │ │ │ ├── imports.wit │ │ │ ├── run.wit │ │ │ ├── stdio.wit │ │ │ └── terminal.wit │ │ ├── clocks │ │ │ ├── monotonic-clock.wit │ │ │ ├── timezone.wit │ │ │ ├── wall-clock.wit │ │ │ └── world.wit │ │ ├── filesystem │ │ │ ├── preopens.wit │ │ │ ├── types.wit │ │ │ └── world.wit │ │ ├── http │ │ │ ├── handler.wit │ │ │ ├── proxy.wit │ │ │ └── types.wit │ │ ├── io │ │ │ ├── error.wit │ │ │ ├── poll.wit │ │ │ ├── streams.wit │ │ │ └── world.wit │ │ ├── keyvalue │ │ │ ├── atomic.wit │ │ │ ├── batch.wit │ │ │ ├── store.wit │ │ │ ├── watch.wit │ │ │ └── world.wit │ │ ├── random │ │ │ ├── insecure-seed.wit │ │ │ ├── insecure.wit │ │ │ ├── random.wit │ │ │ └── world.wit │ │ └── sockets │ │ │ ├── instance-network.wit │ │ │ ├── ip-name-lookup.wit │ │ │ ├── network.wit │ │ │ ├── tcp-create-socket.wit │ │ │ ├── tcp.wit │ │ │ ├── udp-create-socket.wit │ │ │ ├── udp.wit │ │ │ └── world.wit │ │ └── world.wit └── http │ ├── main.rs │ └── wit │ ├── deps.lock │ ├── deps.toml │ ├── deps │ ├── cli │ │ ├── command.wit │ │ ├── environment.wit │ │ ├── exit.wit │ │ ├── imports.wit │ │ ├── run.wit │ │ ├── stdio.wit │ │ └── terminal.wit │ ├── clocks │ │ ├── monotonic-clock.wit │ │ ├── timezone.wit │ │ ├── wall-clock.wit │ │ └── world.wit │ ├── filesystem │ │ ├── preopens.wit │ │ ├── types.wit │ │ └── world.wit │ ├── http │ │ ├── handler.wit │ │ ├── proxy.wit │ │ └── types.wit │ ├── io │ │ ├── error.wit │ │ ├── poll.wit │ │ ├── streams.wit │ │ └── world.wit │ ├── random │ │ ├── insecure-seed.wit │ │ ├── insecure.wit │ │ ├── random.wit │ │ └── world.wit │ └── sockets │ │ ├── instance-network.wit │ │ ├── ip-name-lookup.wit │ │ ├── network.wit │ │ ├── tcp-create-socket.wit │ │ ├── tcp.wit │ │ ├── udp-create-socket.wit │ │ ├── udp.wit │ │ └── world.wit │ └── world.wit ├── flake.lock ├── flake.nix ├── garnix.yaml ├── src └── bin │ └── wit-deps │ └── main.rs └── tests └── build ├── .gitignore ├── Cargo.toml ├── build.rs ├── src └── lib.rs ├── subcrate ├── Cargo.toml ├── build.rs ├── src │ └── lib.rs └── wit │ ├── deps.lock │ ├── deps.toml │ └── world.wit └── wit ├── build.wit ├── deps.lock └── deps.toml /.github/actions/build-nix/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/.github/actions/build-nix/action.yml -------------------------------------------------------------------------------- /.github/actions/install-nix/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/.github/actions/install-nix/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/.github/workflows/nix.yml -------------------------------------------------------------------------------- /.github/workflows/wit-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/.github/workflows/wit-deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | release 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/LICENSE -------------------------------------------------------------------------------- /ORG_CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/ORG_CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/README.md -------------------------------------------------------------------------------- /crates/wit-deps/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/crates/wit-deps/Cargo.toml -------------------------------------------------------------------------------- /crates/wit-deps/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/crates/wit-deps/src/cache.rs -------------------------------------------------------------------------------- /crates/wit-deps/src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/crates/wit-deps/src/digest.rs -------------------------------------------------------------------------------- /crates/wit-deps/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/crates/wit-deps/src/lib.rs -------------------------------------------------------------------------------- /crates/wit-deps/src/lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/crates/wit-deps/src/lock.rs -------------------------------------------------------------------------------- /crates/wit-deps/src/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/crates/wit-deps/src/manifest.rs -------------------------------------------------------------------------------- /examples/github/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/main.rs -------------------------------------------------------------------------------- /examples/github/wit/deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps.lock -------------------------------------------------------------------------------- /examples/github/wit/deps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps.toml -------------------------------------------------------------------------------- /examples/github/wit/deps/cli/command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/cli/command.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/cli/environment.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/cli/environment.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/cli/exit.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/cli/exit.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/cli/imports.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/cli/imports.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/cli/run.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/cli/run.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/cli/stdio.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/cli/stdio.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/cli/terminal.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/cli/terminal.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/clocks/monotonic-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/clocks/monotonic-clock.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/clocks/timezone.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/clocks/timezone.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/clocks/wall-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/clocks/wall-clock.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/clocks/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/clocks/world.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/filesystem/preopens.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/filesystem/preopens.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/filesystem/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/filesystem/types.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/filesystem/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/filesystem/world.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/http/handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/http/handler.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/http/proxy.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/http/proxy.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/http/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/http/types.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/io/error.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/io/error.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/io/poll.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/io/poll.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/io/streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/io/streams.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/io/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/io/world.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/keyvalue/atomic.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/keyvalue/atomic.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/keyvalue/batch.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/keyvalue/batch.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/keyvalue/store.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/keyvalue/store.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/keyvalue/watch.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/keyvalue/watch.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/keyvalue/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/keyvalue/world.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/random/insecure-seed.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/random/insecure-seed.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/random/insecure.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/random/insecure.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/random/random.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/random/random.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/random/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/random/world.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/instance-network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/instance-network.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/ip-name-lookup.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/ip-name-lookup.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/network.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/tcp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/tcp-create-socket.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/tcp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/tcp.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/udp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/udp-create-socket.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/udp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/udp.wit -------------------------------------------------------------------------------- /examples/github/wit/deps/sockets/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/deps/sockets/world.wit -------------------------------------------------------------------------------- /examples/github/wit/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/github/wit/world.wit -------------------------------------------------------------------------------- /examples/http/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/main.rs -------------------------------------------------------------------------------- /examples/http/wit/deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps.lock -------------------------------------------------------------------------------- /examples/http/wit/deps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps.toml -------------------------------------------------------------------------------- /examples/http/wit/deps/cli/command.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/cli/command.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/cli/environment.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/cli/environment.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/cli/exit.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/cli/exit.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/cli/imports.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/cli/imports.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/cli/run.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/cli/run.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/cli/stdio.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/cli/stdio.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/cli/terminal.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/cli/terminal.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/clocks/monotonic-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/clocks/monotonic-clock.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/clocks/timezone.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/clocks/timezone.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/clocks/wall-clock.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/clocks/wall-clock.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/clocks/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/clocks/world.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/filesystem/preopens.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/filesystem/preopens.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/filesystem/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/filesystem/types.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/filesystem/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/filesystem/world.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/http/handler.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/http/handler.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/http/proxy.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/http/proxy.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/http/types.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/http/types.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/io/error.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/io/error.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/io/poll.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/io/poll.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/io/streams.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/io/streams.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/io/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/io/world.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/random/insecure-seed.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/random/insecure-seed.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/random/insecure.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/random/insecure.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/random/random.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/random/random.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/random/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/random/world.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/instance-network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/instance-network.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/ip-name-lookup.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/ip-name-lookup.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/network.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/network.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/tcp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/tcp-create-socket.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/tcp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/tcp.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/udp-create-socket.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/udp-create-socket.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/udp.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/udp.wit -------------------------------------------------------------------------------- /examples/http/wit/deps/sockets/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/deps/sockets/world.wit -------------------------------------------------------------------------------- /examples/http/wit/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/examples/http/wit/world.wit -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/flake.nix -------------------------------------------------------------------------------- /garnix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/garnix.yaml -------------------------------------------------------------------------------- /src/bin/wit-deps/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/src/bin/wit-deps/main.rs -------------------------------------------------------------------------------- /tests/build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/.gitignore -------------------------------------------------------------------------------- /tests/build/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/Cargo.toml -------------------------------------------------------------------------------- /tests/build/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/build.rs -------------------------------------------------------------------------------- /tests/build/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/src/lib.rs -------------------------------------------------------------------------------- /tests/build/subcrate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/subcrate/Cargo.toml -------------------------------------------------------------------------------- /tests/build/subcrate/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/subcrate/build.rs -------------------------------------------------------------------------------- /tests/build/subcrate/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/subcrate/src/lib.rs -------------------------------------------------------------------------------- /tests/build/subcrate/wit/deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/subcrate/wit/deps.lock -------------------------------------------------------------------------------- /tests/build/subcrate/wit/deps.toml: -------------------------------------------------------------------------------- 1 | build = "../../wit" 2 | -------------------------------------------------------------------------------- /tests/build/subcrate/wit/world.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/subcrate/wit/world.wit -------------------------------------------------------------------------------- /tests/build/wit/build.wit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/wit/build.wit -------------------------------------------------------------------------------- /tests/build/wit/deps.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/wit/deps.lock -------------------------------------------------------------------------------- /tests/build/wit/deps.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/wit-deps/HEAD/tests/build/wit/deps.toml --------------------------------------------------------------------------------