slim-bindings 0.4.0__tar.gz → 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of slim-bindings might be problematic. Click here for more details.
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/Cargo.lock +86 -115
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/Cargo.toml +14 -11
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/PKG-INFO +5 -5
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0}/README.md +3 -3
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/CHANGELOG.md +10 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/Cargo.toml +2 -2
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/builder.rs +3 -3
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/jwt.rs +28 -13
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/jwt_middleware.rs +3 -3
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/shared_secret.rs +18 -12
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/testutils.rs +0 -13
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/traits.rs +13 -5
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/CHANGELOG.md +19 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/Cargo.toml +6 -4
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/auth/jwt.rs +51 -9
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/component/id.rs +3 -3
- slim_bindings-0.5.0/core/config/src/grpc/client.rs +981 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc/errors.rs +2 -0
- slim_bindings-0.5.0/core/config/src/grpc/proxy.rs +242 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc/server.rs +135 -39
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc.rs +1 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/lib.rs +1 -0
- slim_bindings-0.5.0/core/config/src/metadata.rs +263 -0
- slim_bindings-0.5.0/core/config/src/tls/common.rs +864 -0
- slim_bindings-0.5.0/core/config/src/tls/provider.rs +184 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/tls/server.rs +2 -2
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/tls.rs +1 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/tests/e2e.rs +2 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/CHANGELOG.md +13 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/Cargo.toml +1 -1
- slim_bindings-0.5.0/core/controller/proto/v1/controller.proto +165 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/src/api/gen/controller.proto.v1.rs +78 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/src/config.rs +3 -3
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/src/service.rs +118 -8
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/CHANGELOG.md +10 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/Cargo.toml +1 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/message_processing.rs +50 -2
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/messages/utils.rs +10 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/tests/data_path_test.rs +1 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/mls/CHANGELOG.md +10 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/mls/Cargo.toml +1 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/mls/src/identity_provider.rs +2 -9
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/CHANGELOG.md +17 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/Cargo.toml +1 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/app.rs +61 -37
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/channel_endpoint.rs +38 -10
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/fire_and_forget.rs +13 -8
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/interceptor.rs +3 -5
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/lib.rs +26 -24
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/session.rs +19 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/tracing/CHANGELOG.md +6 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/tracing/Cargo.toml +1 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/pyproject.toml +7 -17
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/CHANGELOG.md +19 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/Cargo.toml +1 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0/python/bindings}/README.md +3 -3
- slim_bindings-0.5.0/python/bindings/Taskfile.yaml +92 -0
- slim_bindings-0.5.0/python/bindings/examples/CHANGELOG.md +27 -0
- slim_bindings-0.5.0/python/bindings/examples/Dockerfile +97 -0
- slim_bindings-0.4.0/python-bindings/Taskfile.yml → slim_bindings-0.5.0/python/bindings/examples/Taskfile.yaml +8 -103
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/examples/src/slim_bindings_examples/common.py +1 -1
- {slim_bindings-0.4.0 → slim_bindings-0.5.0/python/bindings}/slim_bindings/__init__.py +16 -4
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/slim_bindings/_slim_bindings.pyi +6 -1
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/src/lib.rs +5 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/src/pyidentity.rs +23 -6
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/src/pyservice.rs +18 -5
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/src/pysession.rs +15 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/src/utils.rs +18 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/test_fire_forget.py +11 -2
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/test_identity.py +2 -1
- slim_bindings-0.5.0/python/bindings/uv.lock +432 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0}/slim_bindings/__init__.py +16 -4
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/slim_bindings/_slim_bindings.pyi +6 -1
- slim_bindings-0.4.0/core/config/src/grpc/client.rs +0 -619
- slim_bindings-0.4.0/core/config/src/tls/common.rs +0 -367
- slim_bindings-0.4.0/core/controller/proto/v1/controller.proto +0 -94
- slim_bindings-0.4.0/python-bindings/WINDOWS.md +0 -109
- slim_bindings-0.4.0/python-bindings/examples/Dockerfile +0 -50
- slim_bindings-0.4.0/python-bindings/uv.lock +0 -423
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/errors.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/file_watcher.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/lib.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/auth/src/resolver.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/build.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/proto/hello.proto +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/auth/basic.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/auth/bearer.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/auth.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/component/configuration.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/component.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc/compression.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc/headers_middleware.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc/helloworld.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc/schema/client-config.schema.json +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/grpc/schema/generate_schema.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/opaque.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/provider/env.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/provider/file.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/provider/lib.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/provider.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/testutils/helloworld.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/testutils/tower_service.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/testutils.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/src/tls/client.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/grpc/ca.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/grpc/server.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/grpc/server.key +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/ec256-public.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/ec256-wrong.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/ec256.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/ec384-public.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/ec384-wrong.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/ec384.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/eddsa-public.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/eddsa-wrong.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/eddsa.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/rsa-public.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/rsa-wrong.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/jwt/rsa.pem +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/testfile +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/ca-1.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/ca-2.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/ca-bad.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/client-1.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/client-1.key +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/client-2.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/client-2.key +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/server-1.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/server-1.key +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/server-2.crt +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/testdata/tls/server-2.key +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/config/tests/tls.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/build.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/src/api/proto.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/src/api.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/src/errors.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/controller/src/lib.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/benches/pool_benchmark.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/build.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/proto/v1/pubsub.proto +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/api/gen/pubsub.proto.v1.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/api/proto.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/api.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/connection.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/errors.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/forwarder.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/lib.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/messages/encoder.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/messages.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/tables/connection_table.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/tables/errors.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/tables/pool.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/tables/remote_subscription_table.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/tables/subscription_table.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/datapath/src/tables.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/mls/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/mls/src/errors.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/mls/src/lib.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/mls/src/mls.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/errors.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/interceptor_mls.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/moderator_task.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/producer_buffer.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/receiver_buffer.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/streaming.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/testutils.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/timer.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/service/src/transmitter.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/signal/CHANGELOG.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/signal/Cargo.toml +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/signal/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/signal/src/lib.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/tracing/README.md +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/tracing/src/lib.rs +0 -0
- {slim_bindings-0.4.0 → slim_bindings-0.5.0}/core/tracing/src/utils.rs +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/BUILD.md +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/build.rs +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/examples/pyproject.toml +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/examples/src/slim_bindings_examples/__init__.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/examples/src/slim_bindings_examples/fire_and_forget.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/examples/src/slim_bindings_examples/pubsub.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/examples/src/slim_bindings_examples/request_reply.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/examples/src/slim_bindings_examples/slim.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/src/bin/stub_gen.rs +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/src/build_info.rs +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/common.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/conftest.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/test_bindings.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/test_pubsub.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/test_request_reply.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/test_streaming.py +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/ec256-public.pem +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/ec256.pem +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/ec384-public.pem +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/ec384.pem +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/eddsa-public.pem +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/eddsa.pem +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/rsa-public.pem +0 -0
- {slim_bindings-0.4.0/python-bindings → slim_bindings-0.5.0/python/bindings}/tests/testdata/rsa.pem +0 -0
|
@@ -17,20 +17,31 @@ version = "2.0.1"
|
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
18
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
19
|
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "agntcy-protoc-slimrpc-plugin"
|
|
22
|
+
version = "0.1.0"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"anyhow",
|
|
25
|
+
"heck 0.5.0",
|
|
26
|
+
"prost 0.14.1",
|
|
27
|
+
"prost-types 0.14.1",
|
|
28
|
+
]
|
|
29
|
+
|
|
20
30
|
[[package]]
|
|
21
31
|
name = "agntcy-slim"
|
|
22
|
-
version = "0.
|
|
32
|
+
version = "0.5.0"
|
|
23
33
|
dependencies = [
|
|
24
34
|
"agntcy-slim-config",
|
|
25
35
|
"agntcy-slim-service",
|
|
26
36
|
"agntcy-slim-signal",
|
|
27
37
|
"agntcy-slim-tracing",
|
|
28
38
|
"clap",
|
|
29
|
-
"duration-
|
|
39
|
+
"duration-string",
|
|
30
40
|
"jemallocator",
|
|
31
41
|
"lazy_static",
|
|
32
42
|
"num_cpus",
|
|
33
43
|
"serde",
|
|
44
|
+
"serde_json",
|
|
34
45
|
"serde_yaml",
|
|
35
46
|
"thiserror 2.0.12",
|
|
36
47
|
"tokio",
|
|
@@ -40,8 +51,9 @@ dependencies = [
|
|
|
40
51
|
|
|
41
52
|
[[package]]
|
|
42
53
|
name = "agntcy-slim-auth"
|
|
43
|
-
version = "0.
|
|
54
|
+
version = "0.3.0"
|
|
44
55
|
dependencies = [
|
|
56
|
+
"agntcy-slim-config",
|
|
45
57
|
"async-trait",
|
|
46
58
|
"aws-lc-rs",
|
|
47
59
|
"base64 0.22.1",
|
|
@@ -53,7 +65,6 @@ dependencies = [
|
|
|
53
65
|
"parking_lot",
|
|
54
66
|
"pin-project",
|
|
55
67
|
"reqwest",
|
|
56
|
-
"rustls",
|
|
57
68
|
"schemars",
|
|
58
69
|
"serde",
|
|
59
70
|
"serde_json",
|
|
@@ -91,19 +102,21 @@ dependencies = [
|
|
|
91
102
|
|
|
92
103
|
[[package]]
|
|
93
104
|
name = "agntcy-slim-config"
|
|
94
|
-
version = "0.
|
|
105
|
+
version = "0.3.0"
|
|
95
106
|
dependencies = [
|
|
96
107
|
"agntcy-slim-auth",
|
|
108
|
+
"base64 0.22.1",
|
|
97
109
|
"drain",
|
|
98
|
-
"duration-
|
|
110
|
+
"duration-string",
|
|
99
111
|
"futures",
|
|
100
112
|
"http 1.3.1",
|
|
101
113
|
"hyper-rustls",
|
|
102
114
|
"hyper-util",
|
|
103
115
|
"lazy_static",
|
|
104
116
|
"parking_lot",
|
|
105
|
-
"prost",
|
|
117
|
+
"prost 0.13.5",
|
|
106
118
|
"protoc-bin-vendored",
|
|
119
|
+
"rand 0.9.1",
|
|
107
120
|
"regex",
|
|
108
121
|
"rustls",
|
|
109
122
|
"rustls-native-certs",
|
|
@@ -128,7 +141,7 @@ dependencies = [
|
|
|
128
141
|
|
|
129
142
|
[[package]]
|
|
130
143
|
name = "agntcy-slim-controller"
|
|
131
|
-
version = "0.
|
|
144
|
+
version = "0.3.0"
|
|
132
145
|
dependencies = [
|
|
133
146
|
"agntcy-slim-config",
|
|
134
147
|
"agntcy-slim-datapath",
|
|
@@ -137,7 +150,7 @@ dependencies = [
|
|
|
137
150
|
"drain",
|
|
138
151
|
"h2 0.4.10",
|
|
139
152
|
"parking_lot",
|
|
140
|
-
"prost",
|
|
153
|
+
"prost 0.13.5",
|
|
141
154
|
"protoc-bin-vendored",
|
|
142
155
|
"serde",
|
|
143
156
|
"serde_json",
|
|
@@ -154,7 +167,7 @@ dependencies = [
|
|
|
154
167
|
|
|
155
168
|
[[package]]
|
|
156
169
|
name = "agntcy-slim-datapath"
|
|
157
|
-
version = "0.
|
|
170
|
+
version = "0.9.0"
|
|
158
171
|
dependencies = [
|
|
159
172
|
"agntcy-slim-config",
|
|
160
173
|
"agntcy-slim-tracing",
|
|
@@ -166,7 +179,7 @@ dependencies = [
|
|
|
166
179
|
"h2 0.4.10",
|
|
167
180
|
"opentelemetry",
|
|
168
181
|
"parking_lot",
|
|
169
|
-
"prost",
|
|
182
|
+
"prost 0.13.5",
|
|
170
183
|
"protoc-bin-vendored",
|
|
171
184
|
"rand 0.9.1",
|
|
172
185
|
"thiserror 2.0.12",
|
|
@@ -183,7 +196,7 @@ dependencies = [
|
|
|
183
196
|
|
|
184
197
|
[[package]]
|
|
185
198
|
name = "agntcy-slim-mls"
|
|
186
|
-
version = "0.1.
|
|
199
|
+
version = "0.1.1"
|
|
187
200
|
dependencies = [
|
|
188
201
|
"agntcy-slim-auth",
|
|
189
202
|
"agntcy-slim-datapath",
|
|
@@ -210,7 +223,7 @@ dependencies = [
|
|
|
210
223
|
|
|
211
224
|
[[package]]
|
|
212
225
|
name = "agntcy-slim-service"
|
|
213
|
-
version = "0.
|
|
226
|
+
version = "0.6.0"
|
|
214
227
|
dependencies = [
|
|
215
228
|
"agntcy-slim-auth",
|
|
216
229
|
"agntcy-slim-config",
|
|
@@ -242,7 +255,7 @@ dependencies = [
|
|
|
242
255
|
|
|
243
256
|
[[package]]
|
|
244
257
|
name = "agntcy-slim-tracing"
|
|
245
|
-
version = "0.2.
|
|
258
|
+
version = "0.2.3"
|
|
246
259
|
dependencies = [
|
|
247
260
|
"agntcy-slim-config",
|
|
248
261
|
"once_cell",
|
|
@@ -345,12 +358,6 @@ version = "1.0.98"
|
|
|
345
358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
359
|
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
347
360
|
|
|
348
|
-
[[package]]
|
|
349
|
-
name = "arrayvec"
|
|
350
|
-
version = "0.7.6"
|
|
351
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
352
|
-
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
353
|
-
|
|
354
361
|
[[package]]
|
|
355
362
|
name = "assert-json-diff"
|
|
356
363
|
version = "2.0.2"
|
|
@@ -1011,17 +1018,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1011
1018
|
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1012
1019
|
|
|
1013
1020
|
[[package]]
|
|
1014
|
-
name = "duration-
|
|
1015
|
-
version = "0.
|
|
1021
|
+
name = "duration-string"
|
|
1022
|
+
version = "0.5.3"
|
|
1016
1023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
-
checksum = "
|
|
1024
|
+
checksum = "edbd404ab304f4426de3e981a875a77129597ce04202c9b8b4502c6f1c246809"
|
|
1018
1025
|
dependencies = [
|
|
1019
|
-
"chrono",
|
|
1020
|
-
"rust_decimal",
|
|
1021
1026
|
"serde",
|
|
1022
|
-
"thiserror 2.0.12",
|
|
1023
|
-
"time",
|
|
1024
|
-
"winnow 0.6.26",
|
|
1025
1027
|
]
|
|
1026
1028
|
|
|
1027
1029
|
[[package]]
|
|
@@ -2114,11 +2116,11 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
|
2114
2116
|
|
|
2115
2117
|
[[package]]
|
|
2116
2118
|
name = "matchers"
|
|
2117
|
-
version = "0.
|
|
2119
|
+
version = "0.2.0"
|
|
2118
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
-
checksum = "
|
|
2121
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2120
2122
|
dependencies = [
|
|
2121
|
-
"regex-automata
|
|
2123
|
+
"regex-automata",
|
|
2122
2124
|
]
|
|
2123
2125
|
|
|
2124
2126
|
[[package]]
|
|
@@ -2380,12 +2382,11 @@ checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d"
|
|
|
2380
2382
|
|
|
2381
2383
|
[[package]]
|
|
2382
2384
|
name = "nu-ansi-term"
|
|
2383
|
-
version = "0.
|
|
2385
|
+
version = "0.50.1"
|
|
2384
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "
|
|
2387
|
+
checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
|
|
2386
2388
|
dependencies = [
|
|
2387
|
-
"
|
|
2388
|
-
"winapi",
|
|
2389
|
+
"windows-sys 0.52.0",
|
|
2389
2390
|
]
|
|
2390
2391
|
|
|
2391
2392
|
[[package]]
|
|
@@ -2540,7 +2541,7 @@ dependencies = [
|
|
|
2540
2541
|
"opentelemetry-http",
|
|
2541
2542
|
"opentelemetry-proto",
|
|
2542
2543
|
"opentelemetry_sdk",
|
|
2543
|
-
"prost",
|
|
2544
|
+
"prost 0.13.5",
|
|
2544
2545
|
"reqwest",
|
|
2545
2546
|
"thiserror 2.0.12",
|
|
2546
2547
|
"tokio",
|
|
@@ -2556,7 +2557,7 @@ checksum = "8c40da242381435e18570d5b9d50aca2a4f4f4d8e146231adb4e7768023309b3"
|
|
|
2556
2557
|
dependencies = [
|
|
2557
2558
|
"opentelemetry",
|
|
2558
2559
|
"opentelemetry_sdk",
|
|
2559
|
-
"prost",
|
|
2560
|
+
"prost 0.13.5",
|
|
2560
2561
|
"tonic 0.12.3",
|
|
2561
2562
|
]
|
|
2562
2563
|
|
|
@@ -2604,12 +2605,6 @@ version = "0.2.0"
|
|
|
2604
2605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
2606
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2606
2607
|
|
|
2607
|
-
[[package]]
|
|
2608
|
-
name = "overload"
|
|
2609
|
-
version = "0.1.1"
|
|
2610
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
|
2612
|
-
|
|
2613
2608
|
[[package]]
|
|
2614
2609
|
name = "parking"
|
|
2615
2610
|
version = "2.2.1"
|
|
@@ -2842,7 +2837,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2842
2837
|
checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
|
|
2843
2838
|
dependencies = [
|
|
2844
2839
|
"bytes",
|
|
2845
|
-
"prost-derive",
|
|
2840
|
+
"prost-derive 0.13.5",
|
|
2841
|
+
]
|
|
2842
|
+
|
|
2843
|
+
[[package]]
|
|
2844
|
+
name = "prost"
|
|
2845
|
+
version = "0.14.1"
|
|
2846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2847
|
+
checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d"
|
|
2848
|
+
dependencies = [
|
|
2849
|
+
"bytes",
|
|
2850
|
+
"prost-derive 0.14.1",
|
|
2846
2851
|
]
|
|
2847
2852
|
|
|
2848
2853
|
[[package]]
|
|
@@ -2858,8 +2863,8 @@ dependencies = [
|
|
|
2858
2863
|
"once_cell",
|
|
2859
2864
|
"petgraph",
|
|
2860
2865
|
"prettyplease 0.2.34",
|
|
2861
|
-
"prost",
|
|
2862
|
-
"prost-types",
|
|
2866
|
+
"prost 0.13.5",
|
|
2867
|
+
"prost-types 0.13.5",
|
|
2863
2868
|
"regex",
|
|
2864
2869
|
"syn 2.0.103",
|
|
2865
2870
|
"tempfile",
|
|
@@ -2878,13 +2883,35 @@ dependencies = [
|
|
|
2878
2883
|
"syn 2.0.103",
|
|
2879
2884
|
]
|
|
2880
2885
|
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "prost-derive"
|
|
2888
|
+
version = "0.14.1"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "9120690fafc389a67ba3803df527d0ec9cbbc9cc45e4cc20b332996dfb672425"
|
|
2891
|
+
dependencies = [
|
|
2892
|
+
"anyhow",
|
|
2893
|
+
"itertools 0.14.0",
|
|
2894
|
+
"proc-macro2",
|
|
2895
|
+
"quote",
|
|
2896
|
+
"syn 2.0.103",
|
|
2897
|
+
]
|
|
2898
|
+
|
|
2881
2899
|
[[package]]
|
|
2882
2900
|
name = "prost-types"
|
|
2883
2901
|
version = "0.13.5"
|
|
2884
2902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2885
2903
|
checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
|
|
2886
2904
|
dependencies = [
|
|
2887
|
-
"prost",
|
|
2905
|
+
"prost 0.13.5",
|
|
2906
|
+
]
|
|
2907
|
+
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "prost-types"
|
|
2910
|
+
version = "0.14.1"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72"
|
|
2913
|
+
dependencies = [
|
|
2914
|
+
"prost 0.14.1",
|
|
2888
2915
|
]
|
|
2889
2916
|
|
|
2890
2917
|
[[package]]
|
|
@@ -3240,17 +3267,8 @@ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
|
3240
3267
|
dependencies = [
|
|
3241
3268
|
"aho-corasick",
|
|
3242
3269
|
"memchr",
|
|
3243
|
-
"regex-automata
|
|
3244
|
-
"regex-syntax
|
|
3245
|
-
]
|
|
3246
|
-
|
|
3247
|
-
[[package]]
|
|
3248
|
-
name = "regex-automata"
|
|
3249
|
-
version = "0.1.10"
|
|
3250
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
-
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
3252
|
-
dependencies = [
|
|
3253
|
-
"regex-syntax 0.6.29",
|
|
3270
|
+
"regex-automata",
|
|
3271
|
+
"regex-syntax",
|
|
3254
3272
|
]
|
|
3255
3273
|
|
|
3256
3274
|
[[package]]
|
|
@@ -3261,15 +3279,9 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
|
3261
3279
|
dependencies = [
|
|
3262
3280
|
"aho-corasick",
|
|
3263
3281
|
"memchr",
|
|
3264
|
-
"regex-syntax
|
|
3282
|
+
"regex-syntax",
|
|
3265
3283
|
]
|
|
3266
3284
|
|
|
3267
|
-
[[package]]
|
|
3268
|
-
name = "regex-syntax"
|
|
3269
|
-
version = "0.6.29"
|
|
3270
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
-
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
3272
|
-
|
|
3273
3285
|
[[package]]
|
|
3274
3286
|
name = "regex-syntax"
|
|
3275
3287
|
version = "0.8.5"
|
|
@@ -3337,16 +3349,6 @@ dependencies = [
|
|
|
3337
3349
|
"windows-sys 0.52.0",
|
|
3338
3350
|
]
|
|
3339
3351
|
|
|
3340
|
-
[[package]]
|
|
3341
|
-
name = "rust_decimal"
|
|
3342
|
-
version = "1.37.2"
|
|
3343
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3344
|
-
checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d"
|
|
3345
|
-
dependencies = [
|
|
3346
|
-
"arrayvec",
|
|
3347
|
-
"num-traits",
|
|
3348
|
-
]
|
|
3349
|
-
|
|
3350
3352
|
[[package]]
|
|
3351
3353
|
name = "rustc-demangle"
|
|
3352
3354
|
version = "0.1.25"
|
|
@@ -3747,9 +3749,9 @@ dependencies = [
|
|
|
3747
3749
|
|
|
3748
3750
|
[[package]]
|
|
3749
3751
|
name = "slab"
|
|
3750
|
-
version = "0.4.
|
|
3752
|
+
version = "0.4.11"
|
|
3751
3753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3752
|
-
checksum = "
|
|
3754
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3753
3755
|
|
|
3754
3756
|
[[package]]
|
|
3755
3757
|
name = "slim-examples"
|
|
@@ -4141,7 +4143,7 @@ dependencies = [
|
|
|
4141
4143
|
"serde_spanned",
|
|
4142
4144
|
"toml_datetime",
|
|
4143
4145
|
"toml_write",
|
|
4144
|
-
"winnow
|
|
4146
|
+
"winnow",
|
|
4145
4147
|
]
|
|
4146
4148
|
|
|
4147
4149
|
[[package]]
|
|
@@ -4167,7 +4169,7 @@ dependencies = [
|
|
|
4167
4169
|
"hyper-util",
|
|
4168
4170
|
"percent-encoding",
|
|
4169
4171
|
"pin-project",
|
|
4170
|
-
"prost",
|
|
4172
|
+
"prost 0.13.5",
|
|
4171
4173
|
"tokio",
|
|
4172
4174
|
"tokio-stream",
|
|
4173
4175
|
"tower 0.4.13",
|
|
@@ -4195,7 +4197,7 @@ dependencies = [
|
|
|
4195
4197
|
"hyper-util",
|
|
4196
4198
|
"percent-encoding",
|
|
4197
4199
|
"pin-project",
|
|
4198
|
-
"prost",
|
|
4200
|
+
"prost 0.13.5",
|
|
4199
4201
|
"socket2",
|
|
4200
4202
|
"tokio",
|
|
4201
4203
|
"tokio-stream",
|
|
@@ -4214,7 +4216,7 @@ dependencies = [
|
|
|
4214
4216
|
"prettyplease 0.2.34",
|
|
4215
4217
|
"proc-macro2",
|
|
4216
4218
|
"prost-build",
|
|
4217
|
-
"prost-types",
|
|
4219
|
+
"prost-types 0.13.5",
|
|
4218
4220
|
"quote",
|
|
4219
4221
|
"syn 2.0.103",
|
|
4220
4222
|
]
|
|
@@ -4370,14 +4372,14 @@ dependencies = [
|
|
|
4370
4372
|
|
|
4371
4373
|
[[package]]
|
|
4372
4374
|
name = "tracing-subscriber"
|
|
4373
|
-
version = "0.3.
|
|
4375
|
+
version = "0.3.20"
|
|
4374
4376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4375
|
-
checksum = "
|
|
4377
|
+
checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
|
|
4376
4378
|
dependencies = [
|
|
4377
4379
|
"matchers",
|
|
4378
4380
|
"nu-ansi-term",
|
|
4379
4381
|
"once_cell",
|
|
4380
|
-
"regex",
|
|
4382
|
+
"regex-automata",
|
|
4381
4383
|
"sharded-slab",
|
|
4382
4384
|
"smallvec",
|
|
4383
4385
|
"thread_local",
|
|
@@ -4687,22 +4689,6 @@ dependencies = [
|
|
|
4687
4689
|
"rustix 0.38.44",
|
|
4688
4690
|
]
|
|
4689
4691
|
|
|
4690
|
-
[[package]]
|
|
4691
|
-
name = "winapi"
|
|
4692
|
-
version = "0.3.9"
|
|
4693
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4694
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4695
|
-
dependencies = [
|
|
4696
|
-
"winapi-i686-pc-windows-gnu",
|
|
4697
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
4698
|
-
]
|
|
4699
|
-
|
|
4700
|
-
[[package]]
|
|
4701
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
4702
|
-
version = "0.4.0"
|
|
4703
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4704
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4705
|
-
|
|
4706
4692
|
[[package]]
|
|
4707
4693
|
name = "winapi-util"
|
|
4708
4694
|
version = "0.1.9"
|
|
@@ -4712,12 +4698,6 @@ dependencies = [
|
|
|
4712
4698
|
"windows-sys 0.59.0",
|
|
4713
4699
|
]
|
|
4714
4700
|
|
|
4715
|
-
[[package]]
|
|
4716
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
4717
|
-
version = "0.4.0"
|
|
4718
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4719
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4720
|
-
|
|
4721
4701
|
[[package]]
|
|
4722
4702
|
name = "windows-core"
|
|
4723
4703
|
version = "0.61.2"
|
|
@@ -5000,15 +4980,6 @@ version = "0.53.0"
|
|
|
5000
4980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5001
4981
|
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
5002
4982
|
|
|
5003
|
-
[[package]]
|
|
5004
|
-
name = "winnow"
|
|
5005
|
-
version = "0.6.26"
|
|
5006
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5007
|
-
checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28"
|
|
5008
|
-
dependencies = [
|
|
5009
|
-
"memchr",
|
|
5010
|
-
]
|
|
5011
|
-
|
|
5012
4983
|
[[package]]
|
|
5013
4984
|
name = "winnow"
|
|
5014
4985
|
version = "0.7.11"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[workspace]
|
|
2
2
|
|
|
3
|
-
members = ["python
|
|
3
|
+
members = ["python/bindings"]
|
|
4
4
|
|
|
5
5
|
default-members = [
|
|
6
6
|
"core/config",
|
|
@@ -10,25 +10,28 @@ default-members = [
|
|
|
10
10
|
"core/service",
|
|
11
11
|
"core/signal",
|
|
12
12
|
"core/tracing",
|
|
13
|
+
"slimrpc-compiler",
|
|
13
14
|
"examples",
|
|
14
15
|
"testing",
|
|
15
16
|
]
|
|
16
17
|
|
|
17
|
-
exclude = ["integrations/mcp
|
|
18
|
+
exclude = ["integrations/mcp-proxy"]
|
|
18
19
|
|
|
19
20
|
resolver = "2"
|
|
20
21
|
|
|
21
22
|
[workspace.dependencies]
|
|
22
23
|
# Local dependencies
|
|
23
|
-
agntcy-slim = { path = "core/slim", version = "0.
|
|
24
|
-
agntcy-slim-auth = { path = "core/auth", version = "0.
|
|
25
|
-
agntcy-slim-config = { path = "core/config", version = "0.
|
|
26
|
-
agntcy-slim-controller = { path = "core/controller", version = "0.
|
|
27
|
-
agntcy-slim-datapath = { path = "core/datapath", version = "0.
|
|
28
|
-
agntcy-slim-mls = { path = "core/mls", version = "0.1.
|
|
29
|
-
agntcy-slim-service = { path = "core/service", version = "0.
|
|
24
|
+
agntcy-slim = { path = "core/slim", version = "0.5.0" }
|
|
25
|
+
agntcy-slim-auth = { path = "core/auth", version = "0.3.0" }
|
|
26
|
+
agntcy-slim-config = { path = "core/config", version = "0.3.0" }
|
|
27
|
+
agntcy-slim-controller = { path = "core/controller", version = "0.3.0" }
|
|
28
|
+
agntcy-slim-datapath = { path = "core/datapath", version = "0.9.0" }
|
|
29
|
+
agntcy-slim-mls = { path = "core/mls", version = "0.1.1" }
|
|
30
|
+
agntcy-slim-service = { path = "core/service", version = "0.6.0" }
|
|
30
31
|
agntcy-slim-signal = { path = "core/signal", version = "0.1.3" }
|
|
31
|
-
agntcy-slim-tracing = { path = "core/tracing", version = "0.2.
|
|
32
|
+
agntcy-slim-tracing = { path = "core/tracing", version = "0.2.3" }
|
|
33
|
+
|
|
34
|
+
anyhow = "1.0.98"
|
|
32
35
|
|
|
33
36
|
async-trait = "0.1.88"
|
|
34
37
|
aws-lc-rs = "1.13.1"
|
|
@@ -40,7 +43,7 @@ clap = { version = "4.5.23", features = ["derive", "env"] }
|
|
|
40
43
|
|
|
41
44
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
42
45
|
drain = { version = "0.1", features = ["retain"] }
|
|
43
|
-
duration-
|
|
46
|
+
duration-string = { version = "0.5.3", features = ["serde"] }
|
|
44
47
|
futures = "0.3.31"
|
|
45
48
|
h2 = "0.4.7"
|
|
46
49
|
headers = "0.4.1"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: slim-bindings
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: Intended Audience :: Developers
|
|
6
6
|
Classifier: Topic :: Software Development :: Libraries
|
|
@@ -15,7 +15,7 @@ Requires-Python: >=3.9, <4.0
|
|
|
15
15
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
16
16
|
Project-URL: Repository, https://github.com/agntcy/slim
|
|
17
17
|
Project-URL: Issues, https://github.com/agntcy/slim/issues
|
|
18
|
-
Project-URL: Changelog, https://github.com/agntcy/slim/blob/main/data-plane/python
|
|
18
|
+
Project-URL: Changelog, https://github.com/agntcy/slim/blob/main/data-plane/python/bindings/CHANGELOG.md
|
|
19
19
|
|
|
20
20
|
# SLIM Python Bindings
|
|
21
21
|
|
|
@@ -38,7 +38,7 @@ version = "0.1.0"
|
|
|
38
38
|
description = "Python program using SLIM"
|
|
39
39
|
requires-python = ">=3.9"
|
|
40
40
|
dependencies = [
|
|
41
|
-
"slim-bindings>=0.
|
|
41
|
+
"slim-bindings>=0.5.0"
|
|
42
42
|
]
|
|
43
43
|
```
|
|
44
44
|
|
|
@@ -52,10 +52,10 @@ description = "Python program using SLIM"
|
|
|
52
52
|
|
|
53
53
|
[tool.poetry.dependencies]
|
|
54
54
|
python = ">=3.9,<3.14"
|
|
55
|
-
slim-bindings = ">=0.
|
|
55
|
+
slim-bindings = ">=0.5.0"
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
## Example programs
|
|
59
59
|
|
|
60
|
-
Example apps can be found in the [repo](https://github.com/agntcy/slim/tree/
|
|
60
|
+
Example apps can be found in the [repo](https://github.com/agntcy/slim/tree/slim-v0.5.0/data-plane/python/bindings/examples)
|
|
61
61
|
|
|
@@ -19,7 +19,7 @@ version = "0.1.0"
|
|
|
19
19
|
description = "Python program using SLIM"
|
|
20
20
|
requires-python = ">=3.9"
|
|
21
21
|
dependencies = [
|
|
22
|
-
"slim-bindings>=0.
|
|
22
|
+
"slim-bindings>=0.5.0"
|
|
23
23
|
]
|
|
24
24
|
```
|
|
25
25
|
|
|
@@ -33,9 +33,9 @@ description = "Python program using SLIM"
|
|
|
33
33
|
|
|
34
34
|
[tool.poetry.dependencies]
|
|
35
35
|
python = ">=3.9,<3.14"
|
|
36
|
-
slim-bindings = ">=0.
|
|
36
|
+
slim-bindings = ">=0.5.0"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
## Example programs
|
|
40
40
|
|
|
41
|
-
Example apps can be found in the [repo](https://github.com/agntcy/slim/tree/
|
|
41
|
+
Example apps can be found in the [repo](https://github.com/agntcy/slim/tree/slim-v0.5.0/data-plane/python/bindings/examples)
|
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.3.0](https://github.com/agntcy/slim/compare/slim-auth-v0.2.0...slim-auth-v0.3.0) - 2025-09-17
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- make MLS identity provider backend agnostic ([#552](https://github.com/agntcy/slim/pull/552))
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- *(python-bindings)* default crypto provider initialization for Reqwest crate ([#706](https://github.com/agntcy/slim/pull/706))
|
|
19
|
+
|
|
10
20
|
## [0.2.0](https://github.com/agntcy/slim/compare/slim-auth-v0.1.0...slim-auth-v0.2.0) - 2025-07-31
|
|
11
21
|
|
|
12
22
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "agntcy-slim-auth"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
license = { workspace = true }
|
|
5
5
|
edition = { workspace = true }
|
|
6
6
|
description = "Authentication utilities for the Agntcy Slim framework"
|
|
@@ -21,7 +21,6 @@ notify = { workspace = true }
|
|
|
21
21
|
parking_lot = { workspace = true }
|
|
22
22
|
pin-project = { workspace = true }
|
|
23
23
|
reqwest = { workspace = true }
|
|
24
|
-
rustls = { workspace = true }
|
|
25
24
|
schemars = { workspace = true }
|
|
26
25
|
serde = { workspace = true }
|
|
27
26
|
serde_json = { workspace = true }
|
|
@@ -37,4 +36,5 @@ url = { workspace = true }
|
|
|
37
36
|
wiremock = { workspace = true }
|
|
38
37
|
|
|
39
38
|
[dev-dependencies]
|
|
39
|
+
agntcy-slim-config = { path = "../config" }
|
|
40
40
|
tracing-test = { workspace = true }
|
|
@@ -561,7 +561,7 @@ mod tests {
|
|
|
561
561
|
use std::time::SystemTime;
|
|
562
562
|
use std::time::UNIX_EPOCH;
|
|
563
563
|
|
|
564
|
-
use
|
|
564
|
+
use slim_config::tls::provider::initialize_crypto_provider;
|
|
565
565
|
|
|
566
566
|
fn create_file(file_path: &str, content: &str) -> std::io::Result<()> {
|
|
567
567
|
let mut file = File::create(file_path)?;
|
|
@@ -654,7 +654,7 @@ mod tests {
|
|
|
654
654
|
|
|
655
655
|
let claims = signer.create_claims();
|
|
656
656
|
let token = signer.sign(&claims).unwrap();
|
|
657
|
-
let verified: crate::traits::StandardClaims = verifier.
|
|
657
|
+
let verified: crate::traits::StandardClaims = verifier.get_claims(&token).await.unwrap();
|
|
658
658
|
|
|
659
659
|
assert_eq!(verified.iss.unwrap(), "test-issuer");
|
|
660
660
|
assert_eq!(verified.aud.unwrap(), &["test-audience"]);
|
|
@@ -710,7 +710,7 @@ mod tests {
|
|
|
710
710
|
};
|
|
711
711
|
|
|
712
712
|
let token = signer.sign(&custom_claims).unwrap();
|
|
713
|
-
let verified: CustomClaims = verifier.
|
|
713
|
+
let verified: CustomClaims = verifier.get_claims(&token).await.unwrap();
|
|
714
714
|
|
|
715
715
|
assert_eq!(verified, custom_claims);
|
|
716
716
|
}
|