本文介绍了我可以在git储存库中添加一个作为子目录的从属板条箱吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用EDN解析器,但它位于 https://github.com/mozilla/mentat. https://github.com/mozilla/mentat/tree/master/edn 有自己的Cargo.toml.
I want to use an EDN parser but it is inside https://github.com/mozilla/mentat. https://github.com/mozilla/mentat/tree/master/edn has its own Cargo.toml.
我尝试过:
[dependencies]
edn = { git = "https://github.com/mozilla/mentat/tree/master/edn" }
但这是行不通的.
是否可以在mentat存储库中对此板条箱添加依赖项?
Is it possible to add dependency to this crate inside the mentat repository?
推荐答案
来自货物文档:
(强调我的)
这意味着您只能说:
[dependencies]
edn = { git = "https://github.com/mozilla/mentat" }
这篇关于我可以在git储存库中添加一个作为子目录的从属板条箱吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!