gpt4 book ai didi

rust - 将默认参数传递给 cargo

转载 作者:行者123 更新时间:2023-12-03 11:35:21 24 4
gpt4 key购买 nike

我有以下二进制条板箱源代码结构:

prj
|
|__config
| |___conf.toml
|
|___src
| |_...
|
|__Cargo.toml
因此,当执行 cargo run时,我希望以下命令可以运行 bin /path/to/prj/config/conf.toml
是否可以在 cargo run中配置 Cargo.toml,以便它将绝对路径传递给 config/conf.toml,而不必每次都明确地传递它?

最佳答案

Is it possible to config cargo run in Cargo.toml so it passes the absolute path to the config/conf.toml without passing it explicitly every time?


不完全正确,但是Cargo可以在 configuration files中配置命令别名。例如,您可以将以下内容放入 ${PROJECT_ROOT}/.cargo/config.toml:
[alias]
runx = "run /path/to/config/conf.toml"
然后,您只需要执行 cargo runx即可。

关于rust - 将默认参数传递给 cargo ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63200402/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com