You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been wondering a lot whether the abstractions module in the tss-esapi crate should be moved to a separate crate. My reason for the split is to not keep the two joined at the hip, and have them move at different speeds - at the moment if one wants to break something in the abstractions API, that also breaks the crate API (obviously).
This would come with a few new problems: all current users who make use of abstractions would have to move to the new crate and most likely change imports and such. The new crate would have to re-export the entire tss-esapi crate so users can work with the correct version of that API easily. It'd also mean that users won't get any updates to the tss-esapi "root" crate immediately.
Another approach would be to just put warnings in the README and docs that the abstraction module is not restricted to semantic versioning between tss-esapi releases (for now), and we can break it when we need to.
Thoughts?
The text was updated successfully, but these errors were encountered:
Oh, another option: we can also segregate the abstractions stuff behind a feature. This would help us with minimizing the number of dependencies needed if you only want to work with the "core" Context stuff.
I like the idea of having abstractions as a feature though that does not solve the problem with breaking an API in abstraction also breaks the core crate API.
I've been wondering a lot whether the
abstractions
module in thetss-esapi
crate should be moved to a separate crate. My reason for the split is to not keep the two joined at the hip, and have them move at different speeds - at the moment if one wants to break something in theabstractions
API, that also breaks the crate API (obviously).This would come with a few new problems: all current users who make use of
abstractions
would have to move to the new crate and most likely change imports and such. The new crate would have to re-export the entiretss-esapi
crate so users can work with the correct version of that API easily. It'd also mean that users won't get any updates to thetss-esapi
"root" crate immediately.Another approach would be to just put warnings in the README and docs that the
abstraction
module is not restricted to semantic versioning betweentss-esapi
releases (for now), and we can break it when we need to.Thoughts?
The text was updated successfully, but these errors were encountered: