mirror of
https://github.com/eyre-rs/eyre.git
synced 2026-04-19 13:27:24 +00:00
- **chore: Update checkout github action in CI** - **chore: Remove nightly lints that are not being tested** - **chore: Remove unnecessary `cfg` due to MSRV increase** --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
22 lines
605 B
TOML
22 lines
605 B
TOML
[package]
|
|
name = "simple-eyre"
|
|
version = "0.3.1"
|
|
description = "One of the simplest error reporters one can build ontop of eyre, defining only an error report"
|
|
documentation = "https://docs.rs/simple-eyre"
|
|
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
readme = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
include = { workspace = true }
|
|
|
|
[dependencies]
|
|
eyre = { version = "1", path = "../eyre" }
|
|
indenter = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|