#1254 added limit on dependencies in semantic convention registry:
|
if manifest.dependencies().len() > 1 { |
|
todo!("Multiple dependencies is not supported yet.") |
|
} |
There is a lot of truly great work being done to support multi-registries, and from my basic testing I can see that multiple dependencies are merged correctly if limit is removed. In my option having multi dependency registries makes semantic conventions and Weaver truly powerful tool.
So my question is: do dependency limit of 1 still stands or is still needed? If yes, maybe you can help understand reasoning about it and required work to be done to remove limit?
#1254 added limit on dependencies in semantic convention registry:
weaver/crates/weaver_resolver/src/loader.rs
Lines 211 to 213 in be6d4a7
There is a lot of truly great work being done to support multi-registries, and from my basic testing I can see that multiple dependencies are merged correctly if limit is removed. In my option having multi dependency registries makes semantic conventions and Weaver truly powerful tool.
So my question is: do dependency limit of 1 still stands or is still needed? If yes, maybe you can help understand reasoning about it and required work to be done to remove limit?