/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "cfg_rust_features"
 3  version = "0.1.2"
 4  description = "Set cfg options according to probing for Rust compiler, language, and library features."
 5  authors = ["Derick Eddington"]
 6  license = "Unlicense"
 7  repository = "rad:zJzhvxB8EJSZRQMAnQeKut83nYXz"
 8  # edition = "2015"
 9  rust-version = "1.0.0"
10  readme = "README.md"
11  categories = ["development-tools::build-utils", "rust-patterns"]
12  keywords = ["cfg", "version", "autoconf", "build", "rustc"]
13  include = ["src/", "tests/"]
14  
15  [workspace]
16  exclude = [
17    # The `test_from_another_crate` package is independent, not a member of the
18    # workspace, since it's a peculiar kind of integration test that tests
19    # independent use.
20    "test_from_another_crate",
21    # Specially-modified `autocfg` package(s) that are not part of the workspace,
22    # and that are only for special development tests.
23    "testing/autocfg",
24  ]
25  
26  [dependencies]
27  autocfg = "1"
28  version_check = "0.9"
29  
30  [dev-dependencies]
31  create_temp_subdir = { path = "create_temp_subdir" }
32  
33  [[test]]
34  name = "pretend_build_script"
35  harness = false