forked from sagebind/stability
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (33 loc) · 940 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
34
35
36
37
38
39
[workspace]
resolver = "2"
members = ["example"]
[workspace.package]
authors = ["Stephen M. Coakley <[email protected]>", "The Ratatui Developers"]
license = "MIT"
version = "0.3.7"
edition = "2021"
rust-version = "1.64"
repository = "https://github.com/ratatui-org/instability"
[workspace.dependencies]
instability = { path = ".", version = "0.3.7" }
[package]
name = "instability"
description = "Rust API stability attributes for the rest of us. A fork of the `stability` crate."
documentation = "https://docs.rs/instability/"
authors.workspace = true
license.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
readme = "README.md"
[dependencies]
darling = "0.20.10"
indoc = "2.0.5"
proc-macro2 = "1.0.92"
quote = "1.0.37"
syn = { version = "2.0.90", features = ["derive", "full"] }
[dev-dependencies]
pretty_assertions = "1.4.1"
[lib]
proc-macro = true