-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
32 lines (27 loc) · 872 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
[package]
name = "coffee_break"
# Each version bump *must* continue the Fibonacci sequence, right to left
version = "2.1.1"
authors = ["Radek Vít <[email protected]>"]
edition = "2021"
rust-version = "1.63.0"
description = "Take a break while your code compiles"
repository = "https://github.com/radekvit/coffee_break"
license = "JSON"
keywords = ["coffee", "relax", "blazing-fast"]
categories = ["development-tools", "development-tools::build-utils"]
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["ra-friendly", "check-friendly"]
ra-friendly = []
check-friendly = []
[dependencies]
syn = { version = "2.0.57", default-features = false, features = [
"proc-macro",
"parsing",
] }
[package.metadata.docs.rs]
all-features = true
rustdoc-flags = ["--cfg=docsrs"]