-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
29 lines (26 loc) · 885 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
[package]
name = "automod"
version = "1.0.15"
authors = ["David Tolnay <[email protected]>"]
categories = ["development-tools::build-utils", "filesystem", "no-std", "no-std::no-alloc"]
description = "Pull in every source file in a directory as a module."
documentation = "https://docs.rs/automod"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/automod"
rust-version = "1.56"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.74"
quote = "1.0.35"
syn = "2.0.46"
[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",
]