-
| I have a package which is not crates.io or any other index. Am I doing something wrong, or is a package like this not supported? For reverence, I added this to liner.toml:  | 
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
| Hi! I haven't tested this exactly, but it seems very much like #27: git and path dependencies are still version checked while it has no chance of ever succeeding. This limitation was only there because things were kept dumb and simple. It has been changed since and should be available as part of 0.10.0 some time soon. In the meantime however, you should be able to simply add  | 
Beta Was this translation helpful? Give feedback.
-
| I added that to the config in liner.toml. I now get a cargo error. It seems to me,   | 
Beta Was this translation helpful? Give feedback.
What is displayed if you add
-vv(or more) to the command? This should help confirm what exactly is run. From what you show here however, it really looks like--gitis already passed: there is a Git clone in there.From the shown logs as well, it seems like you are using
cargo-binstall. It is used by default whenever it is available. Can you try explicitly disabling it? You can do that either globally by setting[defaults.ship] binstall = "never"or locally by addingbinstall = "never"to the concerned package's configuration entry.What I suspect for now is that:
--gitis actually passed tocargo-binstallthat starts performing as expected:INFO Cloning with worktree::receiving pack;