-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1.02 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
# https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
".",
"crates/example-crate-with-natvis",
"crates/example-usage-build-rs",
# "crates/example-usage-build-metabuild", # nightly only
]
[package]
name = "natvis-pdbs"
version = "1.0.3"
authors = ["MaulingMonkey <[email protected]>"]
edition = "2018"
description = "A metabuild/build.rs compatible crate to embed .natvis debug visualizer files into your executable's .pdbs, for ease of debugging."
repository = "https://github.com/MaulingMonkey/natvis-pdbs"
readme = "README.md"
keywords = ["metabuild", "natvis", "debug"]
categories = ["development-tools::debugging"]
license = "MIT OR Apache-2.0"
include = [
"src/*",
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"Readme.md",
]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[badges]
appveyor = { repository = "MaulingMonkey/natvis-pdbs", branch = "master", service = "github" }
maintenance = { status = "passively-maintained" }