File: Cargo.toml.orig

package info (click to toggle)
rust-const-format-proc-macros 0.2.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: makefile: 2
file content (44 lines) | stat: -rw-r--r-- 939 bytes parent folder | download
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
[package]
name = "const_format_proc_macros"
version = "0.2.32"
authors = ["rodrimati1992 <rodrimatt1985@gmail.com>"]
rust-version = "1.57.0"
edition = "2021"
license = "Zlib"
description = "Implementation detail of the `const_format` crate"
keywords = ["no-std", "format", "concat"]
categories = ["no-std", "text-processing"]
repository = "https://github.com/rodrimati1992/const_format_crates/"
include = [
    "Cargo.toml", 
    "src/**/*.rs", 
    "../README.md",
    "LICENSE-ZLIB.md", 
]

[lib]
proc-macro = true

[features]
default = []
derive = ["syn", "syn/derive", "syn/printing"]
debug = ["syn/extra-traits"]
all = ["derive"]

[dependencies]
quote = "1.0.7"
proc-macro2 = "1.0.19"
unicode-xid = "0.2"

[dependencies.syn]
version = "1.0.38"
optional = true
default_features = false
features = ["parsing", "proc-macro"]

[dev-dependencies]
fastrand = "1.3.4"


[package.metadata.docs.rs]
rustc-args = ["--cfg", "feature = \"all\""]