Skip to content

Commit

Permalink
Merge pull request #114 from adorsys/feat-108-automate-api-documentat…
Browse files Browse the repository at this point in the history
…ion-generation

Add build script alias to generate and open API documentation
  • Loading branch information
Hermann-Core authored Jul 3, 2024
2 parents 2b077ef + 0494d6f commit 3948b15
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[alias]
docs = "doc --workspace --no-deps --open"
23 changes: 22 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 OR MIT"

[workspace]
members = [
"did-endpoint", "generic-server", "mediator-coordination", "mediator-server", "oob-messages", "server-plugin",
"did-utils",
"did-endpoint",
"generic-server",
"mediator-coordination",
"mediator-server",
"oob-messages",
"server-plugin"
]
resolver = "2"

[workspace.dependencies]
did-utils = { path = "./did-utils" }
did-endpoint = { path = "./did-endpoint" }
generic-server = { path = "./generic-server" }
mediator-coordination = { path = "./mediator-coordination" }
mediator-server = { path = "./mediator-server" }
oob-messages = { path = "./oob-messages" }
server-plugin = { path = "./server-plugin" }
2 changes: 1 addition & 1 deletion mediator-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "didcomm-mediator-rs2"
name = "mediator-server"
version = "0.1.0"
edition = "2021"
authors = ["Francis Pouatcha"]
Expand Down

0 comments on commit 3948b15

Please sign in to comment.