-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
40 lines (37 loc) · 1.04 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
35
36
37
38
39
40
[package]
name = "guppy-summaries"
version = "0.7.1"
description = "Build summaries for Cargo, created by guppy."
documentation = "https://docs.rs/guppy-summaries"
repository = "https://github.com/guppy-rs/guppy"
authors = ["Rain <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["cargo", "dependencies", "guppy", "summaries"]
categories = [
"config",
"data-structures",
"development-tools",
"parser-implementations",
]
edition = "2021"
exclude = [
# Readme template that doesn't need to be included.
"README.tpl",
]
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true
[dependencies]
ahash = "0.8.11"
camino = { version = "1.1.9", features = ["serde1"] }
cfg-if = "1.0.0"
diffus = "0.10.0"
toml = { version = "0.5.11", features = ["preserve_order"] }
semver = { version = "1.0.25", features = ["serde"] }
serde = { version = "1.0.218", features = ["derive"] }
guppy-workspace-hack.workspace = true
[dev-dependencies]
indoc = "2.0.5"
pretty_assertions = "1.4.1"
serde_json = "1.0.139"