-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
33 lines (29 loc) · 1018 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
[package]
name = "indoc"
version = "2.0.5"
authors = ["David Tolnay <[email protected]>"]
categories = ["rust-patterns", "text-processing", "no-std", "no-std::no-alloc"]
description = "Indented document literals"
documentation = "https://docs.rs/indoc"
edition = "2021"
keywords = ["heredoc", "nowdoc", "multiline", "string", "literal"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/indoc"
rust-version = "1.56"
[lib]
proc-macro = true
[dev-dependencies]
rustversion = "1.0"
trybuild = { version = "1.0.49", features = ["diff"] }
unindent = { version = "0.2.3", path = "unindent" }
[workspace]
members = ["unindent"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--generate-link-to-definition",
"--extern-html-root-url=core=https://doc.rust-lang.org",
"--extern-html-root-url=alloc=https://doc.rust-lang.org",
"--extern-html-root-url=std=https://doc.rust-lang.org",
"--extern-html-root-url=proc_macro=https://doc.rust-lang.org",
]