• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H03-May-2022-3329

src/H03-May-2022-1,636977

tests/H03-May-2022-11195

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.clog.tomlH A D15-Aug-2018109 54

.gitignoreH A D12-Feb-201929 43

.travis.ymlH A D08-Apr-20191.2 KiB5650

CHANGELOG.mdH A D08-Apr-20193.5 KiB7640

CONTRIBUTING.mdH A D15-Aug-20182.6 KiB6851

Cargo.tomlH A D01-Jan-19701.3 KiB4741

Cargo.toml.orig-cargoH A D08-Apr-20191.1 KiB3732

LICENSE-APACHEH A D15-Aug-201811.1 KiB203169

LICENSE-MITH A D15-Aug-20181 KiB2016

README.mdH A D08-Apr-20191.7 KiB5235

appveyor.ymlH A D08-Apr-20191.2 KiB5244

build.rsH A D12-Feb-2019592 1712

README.md

1# escargot
2
3> **Cargo API written in Paris**
4
5[![Travis Status](https://travis-ci.org/crate-ci/escargot.svg?branch=master)](https://travis-ci.org/crate-ci/escargot)
6[![Appveyor Status](https://ci.appveyor.com/api/projects/status/ngaynop65qg5sqpq/branch/master?svg=true)](https://ci.appveyor.com/project/epage/escargot/branch/master)
7[![Documentation](https://img.shields.io/badge/docs-master-blue.svg)][Documentation]
8![License](https://img.shields.io/crates/l/escargot.svg)
9[![Crates Status](https://img.shields.io/crates/v/escargot.svg)](https://crates.io/crates/escargot)
10
11## Install
12
13Add to your `Cargo.toml`:
14
15```toml
16[dependencies]
17escargot = "0.5"
18```
19
20## Why escargot
21
22Compared to depending on `cargo`:
23- Faster compile times.
24- Simpler API.
25- Better interop with projects relying on other cargo versions.
26- Probably slower execution, especially on platforms without an optimized `fork` (e.g. Windows).
27
28## Relevant crates
29
30Other related crates:
31* [cargo](https://crates.io/crates/cargo) for the real thing
32* [cargo-metadata](https://crates.io/crates/cargo_metadata) for a similar project specifically geared to the `metadata` subcommand.
33
34## License
35
36Licensed under either of
37
38 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
39 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
40
41at your option.
42
43### Contribution
44
45Unless you explicitly state otherwise, any contribution intentionally
46submitted for inclusion in the work by you, as defined in the Apache-2.0
47license, shall be dual licensed as above, without any additional terms or
48conditions.
49
50[Crates.io]: https://crates.io/crates/escargot
51[Documentation]: https://docs.rs/escargot
52