-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
46 lines (41 loc) · 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
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "cargo-config2"
version = "0.1.13"
edition = "2021"
rust-version = "1.66"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/taiki-e/cargo-config2"
keywords = ["cargo", "config"]
categories = []
exclude = ["/.*", "/tools"]
description = """
Load and resolve Cargo configuration.
"""
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[workspace]
resolver = "2"
members = ["bench", "tools/codegen"]
[lib]
doc-scrape-examples = false
# Note: serde is public dependencies.
[dependencies]
home = "0.5"
once_cell = { version = "1", default-features = false }
serde = "1.0.165"
serde_derive = "1.0.165"
toml = { version = "0.8", default-features = false, features = ["parse"] }
[dev-dependencies]
anyhow = "1"
build-context = "0.1"
clap = { version = "4", default-features = false, features = ["std", "derive"] }
duct = "0.13"
fs-err = "2"
lexopt = "0.3"
rustversion = "1"
serde_json = "1"
shell-escape = "0.1"
similar-asserts = "1"
static_assertions = "1"
tempfile = "3"
toml = "0.8"