-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #104 from eyre-rs/monorepo
Create foundation for monorepo
- Loading branch information
Showing
2 changed files
with
39 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,44 @@ | ||
[workspace] | ||
members = [ | ||
"." | ||
] | ||
|
||
[workspace.package] | ||
authors = ["Jane Lusby <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/eyre-rs/eyre" | ||
readme = "README.md" | ||
rust-version = "1.65.0" | ||
|
||
[workspace.dependencies] | ||
indenter = "0.3.0" | ||
once_cell = "1.18.0" | ||
|
||
[package] | ||
name = "eyre" | ||
version = "0.6.8" | ||
authors = ["David Tolnay <[email protected]>", "Jane Lusby <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "Flexible concrete Error Reporting type built on std::error::Error with customizable Reports" | ||
repository = "https://github.com/yaahc/eyre" | ||
documentation = "https://docs.rs/eyre" | ||
readme = "README.md" | ||
categories = ["rust-patterns"] | ||
|
||
edition = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
readme = { workspace = true } | ||
rust-version = { workspace = true } | ||
|
||
[features] | ||
default = ["auto-install", "track-caller"] | ||
auto-install = [] | ||
track-caller = [] | ||
|
||
[dependencies] | ||
indenter = { workspace = true } | ||
once_cell = { workspace = true } | ||
pyo3 = { version = "0.13", optional = true, default-features = false } | ||
|
||
[dev-dependencies] | ||
futures = { version = "0.3", default-features = false } | ||
rustversion = "1.0" | ||
|
@@ -25,11 +49,6 @@ anyhow = "1.0.28" | |
syn = { version = "2.0", features = ["full"] } | ||
pyo3 = { version = "0.13", default-features = false, features = ["auto-initialize"] } | ||
|
||
[dependencies] | ||
indenter = "0.3.0" | ||
once_cell = "1.18.0" | ||
pyo3 = { version = "0.13", optional = true, default-features = false } | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
rustdoc-args = ["--cfg", "doc_cfg"] | ||
|