CodeChain-io / CodeChain-io/intertrait
Publicly export `linkme` from `intertrait` and use it for the macros
未关闭
还没有人认领这个 Issue。
- 主要语言
- Rust
- 星标
- 42
- 派生
- 8
- PR 合并指标
- 30 天内没有已合并 PR
描述
Simply publicly export the linkme crate - or the needed components from it - at the root of the intertrait crate, so that macros can access their dependencies without needing people to install the linkme crate separately.
Changes
macros/src/gen_caster.rs
Old
macros/src/gen_caster.rs
#[::linkme::distributed_slice(::intertrait::CASTERS)]
New:
src/lib.rs
pub use linkme;
macros/src/gen_caster.rs
#[::intertrait::linkme::distributed_slice(::intertrait::CASTERS)]
#[linkme(crate = ::intertrait::linkme)]
贡献指南
这个仓库没有索引到贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
先阅读 src/lib.rs 和 macros/src/gen_caster.rs,然后检查宏依赖是如何声明和引用的。按所示更新公共 crate 路径,并运行仓库的 Rust 测试或构建检查;完成的标志是宏使用 intertrait 导出的 linkme,而不需要单独的 linkme 依赖。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- rust
- 领域
- tooling
- Issue 类型
- 功能
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 58/100