-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 728 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 728 Bytes
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
[package]
name = "rspeek"
version = "0.1.7"
edition = "2021"
description = "Quickly inspect type definitions from Rust dependency source code"
repository = "https://github.com/tzneal/rspeek"
license = "MIT"
publish = false
[package.metadata.dist]
dist = true
[dependencies]
cargo_metadata = "0.23"
clap = { version = "4", features = ["derive"] }
syn = { version = "2", features = ["full", "parsing", "visit"] }
anyhow = "1"
proc-macro2 = { version = "1", features = ["span-locations"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
rayon = "1"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[dev-dependencies]
tempfile = "3.27.0"
filetime = "0.2"