-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 879 Bytes
/
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
[package]
name = "quit"
version.workspace = true
authors = ["dylni"]
edition.workspace = true
rust-version.workspace = true
description = """
Exit cleanly with an exit code
"""
readme = "README.md"
repository.workspace = true
license.workspace = true
keywords = ["exit", "code", "status", "die", "terminate"]
categories = ["command-line-interface", "rust-patterns"]
exclude = [".*", "tests.rs", "/rustfmt.toml", "/src/bin", "/src/tests_common.rs", "/tests"]
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "quit_docs_rs"]
rustdoc-args = ["--cfg", "quit_docs_rs"]
[dependencies]
quit_macros = { version = "=2.0.0", path = "macros" }
[features]
__unstable_tests = []
[workspace]
members = ["macros"]
[workspace.package]
version = "2.0.0"
edition = "2021"
rust-version = "1.64.0"
repository = "https://github.com/dylni/quit"
license = "MIT OR Apache-2.0"