good first issue
倉庫指標
- 星標
- (126 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
To work around some lifetime issues, we have this beauty in runner.rs:
pub(crate) enum Config<'a, 'b, 'c, 'd, 'e, 'f, 'g> {
Setup(ConfigSetup<'a>),
RunSystem(ConfigRunSystem<'a, 'b, 'c, 'd, 'e, 'f, 'g>),
}
These lifetimes can probably be reduced and simplified.