[go: up one dir, main page]

cargo-edit-9 0.9.2

This extends Cargo to allow you to add and remove dependencies by modifying your `Cargo.toml` file from the command line. It contains `cargo add`, `cargo rm`, and `cargo upgrade`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[test]
fn cli_tests() {
    let t = trycmd::TestCases::new();
    t.case("tests/cmd/add/*.toml");
    #[cfg(not(feature = "test-external-apis"))]
    {
        t.skip("tests/cmd/add/invalid_git_external.toml");
        t.skip("tests/cmd/add/invalid_name_external.toml");
        t.skip("tests/cmd/add/add_normalized_name_external.toml");
        t.skip("tests/cmd/add/git_external.toml");
    }
}