File tree Expand file tree Collapse file tree 5 files changed +586
-0
lines changed Expand file tree Collapse file tree 5 files changed +586
-0
lines changed Original file line number Diff line number Diff line change 52
52
load_module ${{ github.workspace }}/nginx/objs/ngx_http_async_module.so;
53
53
load_module ${{ github.workspace }}/nginx/objs/ngx_http_awssigv4_module.so;
54
54
load_module ${{ github.workspace }}/nginx/objs/ngx_http_curl_module.so;
55
+ load_module ${{ github.workspace }}/nginx/objs/ngx_http_shared_dict_module.so;
55
56
load_module ${{ github.workspace }}/nginx/objs/ngx_http_upstream_custom_module.so;
56
57
57
58
OPENSSL_VERSION : ' 3.0.16'
Original file line number Diff line number Diff line change @@ -51,6 +51,11 @@ name = "async"
51
51
path = " async.rs"
52
52
crate-type = [" cdylib" ]
53
53
54
+ [[example ]]
55
+ name = " shared_dict"
56
+ path = " shared_dict.rs"
57
+ crate-type = [" cdylib" ]
58
+
54
59
[features ]
55
60
default = [" export-modules" , " ngx/vendored" ]
56
61
# Generate `ngx_modules` table with module exports
Original file line number Diff line number Diff line change @@ -39,6 +39,14 @@ if [ $HTTP = YES ]; then
39
39
ngx_rust_module
40
40
fi
41
41
42
+ if :; then
43
+ ngx_module_name=ngx_http_shared_dict_module
44
+ ngx_module_libs=
45
+ ngx_rust_target_name=shared_dict
46
+
47
+ ngx_rust_module
48
+ fi
49
+
42
50
if :; then
43
51
ngx_module_name=ngx_http_upstream_custom_module
44
52
ngx_module_libs=
You can’t perform that action at this time.
0 commit comments