In the README.md it says to add kolibrie in the Cargo.toml file as,
[dependencies]
kolibrie = "0.1.0"
However, on running cargo build it can't find the package in the crates.io index
error: no matching package named `kolibrie` found
location searched: crates.io index
required by package `rsp-rs v0.1.0 (/Users/kushbisen/Code/Rust/rsp-rs)`
which is also seen in the search https://crates.io/search?q=kolibrie as I can't find it there too.
I can also install kolibrie by downloading it, and using it as
kolibrie = { path = "../kolibrie" }
I am running into build issues related to ARM64 and Python which can be resolved with some effort.
However if I can directly add it with the crates.io index it would be easier. How is it possible?
In the
README.mdit says to add kolibrie in theCargo.tomlfile as,However, on running
cargo buildit can't find the package in the crates.io indexwhich is also seen in the search https://crates.io/search?q=kolibrie as I can't find it there too.
I can also install kolibrie by downloading it, and using it as
I am running into build issues related to ARM64 and Python which can be resolved with some effort.
However if I can directly add it with the crates.io index it would be easier. How is it possible?