-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
32 lines (28 loc) · 916 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 = "postcompile"
version = "0.0.5"
edition = "2021"
build = "build.rs"
repository = "https://github.com/scufflecloud/scuffle"
authors = ["Scuffle <[email protected]>"]
readme = "README.md"
documentation = "https://docs.rs/postcompile"
license = "MIT OR Apache-2.0"
description = "Helper crate for post-compiling Rust code."
keywords = ["postcompile", "snapshot", "test", "proc-macro"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(trybuild_no_target)', 'cfg(postcompile_no_target)', 'cfg(coverage_nightly)'] }
[dependencies]
serde_json = "1.0"
cargo_metadata = "0.19.1"
cargo-platform = "0.1"
target-triple = "0.1"
serde_derive = "1.0"
serde = "1.0"
prettyplease = { version = "0.2", optional = true }
syn = { version = "2", features = ["full"] }
scuffle-workspace-hack.workspace = true
[dev-dependencies]
insta = "1.42.0"
[features]
prettyplease = ["dep:prettyplease"]