| Crates.io | rvc-lib |
| lib.rs | rvc-lib |
| version | 0.2.0 |
| created_at | 2023-04-10 11:46:59.771893+00 |
| updated_at | 2023-04-13 13:13:12.304133+00 |
| description | The library that rvc uses for version control. |
| homepage | https://github.com/gluzandii/rvc-lib |
| repository | https://github.com/gluzandii/rvc-lib |
| max_upload_size | |
| id | 835069 |
| size | 55,601 |
rvc-lib is the library that is used by rvc for its version control.
use rvc_lib::repo::Repo;
fn main() {
let repo = Repo::create_repo("path/to/repo", Some("Name of the repo"), Some("Description of the repo")).expect("Failed to create repo");
}
use rvc_lib::repo::Repo;
fn main() {
let repo = Repo::open_repo("path/to/repo").expect("Failed to open repo");
}