diff --git a/aries_cloudagent/config/default_context.py b/aries_cloudagent/config/default_context.py index 538b361171..a403505ed7 100644 --- a/aries_cloudagent/config/default_context.py +++ b/aries_cloudagent/config/default_context.py @@ -131,7 +131,6 @@ async def load_plugins(self, context: InjectionContext): plugin_registry.register_package("aries_cloudagent.protocols") # Currently providing admin routes only - plugin_registry.register_plugin("aries_cloudagent.did.tdw") plugin_registry.register_plugin("aries_cloudagent.holder") plugin_registry.register_plugin("aries_cloudagent.ledger") plugin_registry.register_plugin("aries_cloudagent.messaging.jsonld") @@ -140,6 +139,9 @@ async def load_plugins(self, context: InjectionContext): plugin_registry.register_plugin("aries_cloudagent.vc") plugin_registry.register_plugin("aries_cloudagent.wallet") + # Did management plugins + plugin_registry.register_plugin("aries_cloudagent.did.tdw") + anoncreds_plugins = [ "aries_cloudagent.anoncreds", "aries_cloudagent.anoncreds.default.did_indy", diff --git a/poetry.lock b/poetry.lock index b9ffcd45c7..994e935758 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3049,4 +3049,4 @@ didcommv2 = ["didcomm-messaging"] [metadata] lock-version = "2.0" python-versions = "^3.12" -content-hash = "1ef28c206317f8ad6313e6a8ded96de07c2f32cbd1af93ee12191f62038cb0dd" +content-hash = "e5dc40fc784a25e3a6557b9141189ee74edd5c047554ca2a4c477b24124f50ea" diff --git a/pyproject.toml b/pyproject.toml index c87033a2da..06c327c638 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,12 +45,14 @@ requests="~2.32.3" rlp="4.0.1" unflatten="~0.2" sd-jwt = "^0.10.3" -did-peer-2 = "^0.1.2" -did-peer-4 = "^0.1.4" uuid_utils = "^0.9.0" +# did libraries +did-peer-2 = "^0.1.2" +did-peer-4 = "^0.1.4" did-tdw = "^0.1.0" + # askar aries-askar= { version = "~0.3.2", optional = true } indy-credx= { version = "~1.1.1", optional = true }