forked from oli-obk/cargo_metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 901 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 901 Bytes
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
[package]
name = "cargo_metadata"
version = "0.20.0"
authors = ["Oliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>"]
repository = "https://github.com/oli-obk/cargo_metadata"
description = "structured access to the output of `cargo metadata`"
license = "MIT"
readme = "README.md"
edition = "2021"
rust-version = "1.82.0"
[dependencies]
camino = { version = "1.0.7", features = ["serde1"] }
cargo-platform = "0.2.0"
cargo-util-schemas = "0.2.0"
derive_builder = { version = "0.20", optional = true }
semver = { version = "1.0.7", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.118", features = ["unbounded_depth"] }
thiserror = "2.0.3"
[features]
default = []
builder = ["derive_builder"]
unstable = []
[package.metadata.docs.rs]
all-features = true
[package.metadata.cargo_metadata_test]
some_field = true
other_field = "foo"