-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pull identity initialization out of app building #2866
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,4 @@ tokio-stream = { version = "0.1", features = ["time", "sync"] } | |
tonic = { version = "0.10", default-features = false, features = ["prost"] } | ||
tower = "0.4" | ||
tracing = "0.1" | ||
pkix = "0.2.3" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to be conservative about pulling in random dependencies of various maintenance statuses... especially for our TLS related dependencies. Can we use rustls-pemfile, since we already depend on it and have a relationship with the maintainers? Or is it possible to update the store contract to take roots as EITHER Der or PEM? Can the underlying TLS impls take either? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to avoid a dependency on Chrono, unless we are actually using some advanced timezone-aware time calculation feature. There's history.