generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
34 lines (31 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "krates"
version = "0.6.0"
description = "Create graphs of crates gathered from cargo metadata"
authors = ["Embark <opensource@embark-studios.com>", "Jake Shadle <jake.shadle@embark-studios.com>"]
edition = "2018"
repository = "https://github.com/EmbarkStudios/krates"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/krates"
homepage = "https://github.com/EmbarkStudios/krates"
keywords = ["cargo", "metadata", "graph"]
[features]
default = []
# Adds support for filtering target specific dependencies
targets = ["cfg-expr/targets"]
#features = []
[dependencies]
# Used for acquiring and/or deserializing `cargo metadata` output
cargo_metadata = "0.12"
# Used to parse and evaluate cfg() expressions for dependencies
cfg-expr = "0.7"
# Used to create and traverse graph structures
petgraph = "0.5"
# Used for checking version requirements
semver = "0.11" # Using the same version as cargo_metadata
[dev-dependencies]
# Used to print colored diffs in case of test failures
difference = "2.0"
# Used to deserialize test files into metadata we can load
serde_json = "1.0"