-
-
Notifications
You must be signed in to change notification settings - Fork 43
feat: allow accessing extra config #518
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
base: master
Are you sure you want to change the base?
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -185,6 +185,7 @@ pub use cot_macros::test; | |||||
| pub use http; | ||||||
| #[cfg(feature = "openapi")] | ||||||
| pub use schemars; | ||||||
| pub use toml; | ||||||
|
||||||
| pub use toml; | |
| pub use toml::{Table, Value}; |
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.
Removing
PartialEq/EqfromProjectConfigis a breaking public API change (downstream code may rely on equality comparisons). Iftoml::Tableprevents derivingEq, consider restoring at leastPartialEq(either via derive if supported, or via a manualimpl PartialEq), or document this as a breaking change requiring a major version bump.