Skip to content

Commit cbd464e

Browse files
committed
Update README and CI
1 parent 35dfdda commit cbd464e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
cargo test --features ${{ matrix.lua }},vendored
2626
- name: Run ${{ matrix.lua }} tests (full)
2727
run: |
28-
cargo test --features ${{ matrix.lua }},vendored,json,regex,yaml,http,task
28+
cargo test --features ${{ matrix.lua }},vendored,json,regex,yaml,http,task,net,tls
2929
3030
rustfmt:
3131
name: Rustfmt
@@ -53,4 +53,4 @@ jobs:
5353
with:
5454
components: clippy
5555
- run: |
56-
cargo clippy --features lua54,vendored,json,regex,yaml,http,task -- -D warnings
56+
cargo clippy --features lua54,vendored,json,regex,yaml,http,task,net,tls -- -D warnings

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ With the following optional modules:
1818
- **json** (feature) - JSON encoding/decoding
1919
- **regex** (feature) - Regular expressions support
2020
- **yaml** (feature) - YAML encoding/decoding
21+
- **http** (feature) - HTTP client and server utilities
22+
- **task** (feature) - Async task management and execution
23+
- **net** (feature) - Networking support
24+
- **tcp** - TCP client and server sockets
25+
- **udp** - UDP sockets for connectionless communication
26+
- **unix** - Unix domain sockets (Unix platforms only)
27+
- **tls** (feature) - TLS/SSL support for secure connections
2128

2229
The following feature flags are passed to `mlua`, when enabled:
2330

0 commit comments

Comments
 (0)