-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from mobusoperandi/no-workspace
build: no cargo workspace
- Loading branch information
Showing
18 changed files
with
33 additions
and
66 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,14 +1,33 @@ | ||
[workspace] | ||
members = ["crates/*"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
[package] | ||
name = "eelco" | ||
description = "Nix doctests CLI" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/mobusoperandi/eelco" | ||
keywords = ["nix", "doctest", "cli", "documentation", "test"] | ||
categories = ["command-line-utilities", "development-tools::testing"] | ||
|
||
[workspace.dependencies] | ||
util = { path = "crates/util" } | ||
[dependencies] | ||
anyhow = { version = "1.0.72", features = ["backtrace"] } | ||
camino = "1.1.6" | ||
clap = "4.3.21" | ||
comrak = "0.18.0" | ||
derive_more = { version = "1.0.0-beta.2", features = ["deref", "display", "into_iterator", "constructor"] } | ||
futures = "0.3.28" | ||
glob = "0.3.1" | ||
indoc = "2.0.3" | ||
itertools = "0.11.0" | ||
strip-ansi-escapes = "0.1.1" | ||
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread", "io-util"] } | ||
|
||
[dependencies.pty-process] | ||
version = "0.4.0" | ||
features = ["async"] | ||
git = "https://github.com/mobusoperandi/pty-process.git" | ||
rev = "7889630" | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0.12" | ||
assert_fs = "1.0.13" | ||
indoc = "2.0.3" |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,3 +1,5 @@ | ||
mod util; | ||
|
||
use util::with_eelco; | ||
|
||
#[test] | ||
|
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,3 +1,5 @@ | ||
mod util; | ||
|
||
use assert_fs::prelude::FileWriteStr; | ||
use indoc::{formatdoc, indoc}; | ||
use util::with_eelco; | ||
|
File renamed without changes.