Skip to content

Commit

Permalink
fix: set logcraft-cli-plugins submodule on branch main (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatisseB committed Jul 3, 2024
1 parent 1bc88d9 commit 31f1b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins
Submodule plugins updated 62 files
+23 −0 .github/workflows/check.yml
+93 −0 .github/workflows/release.yml
+49 −0 .github/workflows/test.yml
+1 −2 .gitignore
+2,129 −238 Cargo.lock
+5 −4 Cargo.toml
+52 −0 README.md
+29 −0 licenserc.toml
+1 −0 samples/.gitignore
+3 −0 samples/README.md
+45 −0 samples/python/README.md
+2 −0 samples/python/myplugin/__init__.py
+0 −0 samples/python/myplugin/client/__init__.py
+368 −0 samples/python/myplugin/client/pool_loop.py
+119 −0 samples/python/myplugin/client/req.py
+68 −0 samples/python/myplugin/main.py
+21 −0 samples/python/poetry.lock
+14 −0 samples/python/pyproject.toml
+2 −0 samples/python/tests/__init__.py
+7 −0 samples/python/wit/deps/cli/command.wit
+18 −0 samples/python/wit/deps/cli/environment.wit
+4 −0 samples/python/wit/deps/cli/exit.wit
+20 −0 samples/python/wit/deps/cli/imports.wit
+4 −0 samples/python/wit/deps/cli/run.wit
+17 −0 samples/python/wit/deps/cli/stdio.wit
+49 −0 samples/python/wit/deps/cli/terminal.wit
+45 −0 samples/python/wit/deps/clocks/monotonic-clock.wit
+42 −0 samples/python/wit/deps/clocks/wall-clock.wit
+6 −0 samples/python/wit/deps/clocks/world.wit
+8 −0 samples/python/wit/deps/filesystem/preopens.wit
+634 −0 samples/python/wit/deps/filesystem/types.wit
+6 −0 samples/python/wit/deps/filesystem/world.wit
+34 −0 samples/python/wit/deps/io/error.wit
+41 −0 samples/python/wit/deps/io/poll.wit
+262 −0 samples/python/wit/deps/io/streams.wit
+6 −0 samples/python/wit/deps/io/world.wit
+25 −0 samples/python/wit/deps/random/insecure-seed.wit
+22 −0 samples/python/wit/deps/random/insecure.wit
+26 −0 samples/python/wit/deps/random/random.wit
+7 −0 samples/python/wit/deps/random/world.wit
+9 −0 samples/python/wit/deps/sockets/instance-network.wit
+51 −0 samples/python/wit/deps/sockets/ip-name-lookup.wit
+145 −0 samples/python/wit/deps/sockets/network.wit
+27 −0 samples/python/wit/deps/sockets/tcp-create-socket.wit
+353 −0 samples/python/wit/deps/sockets/tcp.wit
+27 −0 samples/python/wit/deps/sockets/udp-create-socket.wit
+266 −0 samples/python/wit/deps/sockets/udp.wit
+11 −0 samples/python/wit/deps/sockets/world.wit
+31 −0 samples/python/wit/plugin.wit
+13 −0 samples/python/wit/world.wit
+26 −0 sentinel/Cargo.toml
+78 −0 sentinel/README.md
+254 −0 sentinel/package/rule.k
+51 −0 sentinel/package/settings.k
+336 −0 sentinel/src/lib.rs
+4 −10 splunk/Cargo.toml
+11 −37 splunk/README.md
+63 −4 splunk/package/rule.k
+16 −6 splunk/package/settings.k
+153 −57 splunk/src/lib.rs
+0 −13 splunk/wit/world.wit
+2 −2 wit/world.wit

0 comments on commit 31f1b7d

Please sign in to comment.