forked from veraison/keybroker-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: improve dependency management.
So far, each project in keybroker-demo was specifying its own package dependencies, including the version pinning and features. This is undesirable as over time, it means that projects' dependencies might unnecessarily diverge. Cargo's dependency resolver is doing a good job... but hiding the mess under the carpet does not seem like a good engineering approach when there are available solutions. Instead, let's have all the package dependencies in the top Cargo.toml, and let the individual projects refer to them. This gives us a central place where to manage the dependencies from. This may become important in the future, e.g. if we have to update some package for security reasons for example. Signed-off-by: Arnaud de Grandmaison <[email protected]>
- Loading branch information
1 parent
d101952
commit ed6ce14
Showing
5 changed files
with
50 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters