-
-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
29 additions
and
55 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 |
---|---|---|
|
@@ -2,13 +2,10 @@ | |
name = "gix-config-tests" | ||
version = "0.0.0" | ||
repository = "https://github.com/Byron/gitoxide" | ||
description = "A git-config file parser and editor from the gitoxide project" | ||
description = "Tests for the gix-config crate" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Edward Shen <[email protected]>"] | ||
edition = "2021" | ||
keywords = ["git-config", "git", "config", "gitoxide"] | ||
categories = ["config", "parser-implementations"] | ||
include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"] | ||
rust-version = "1.65" | ||
publish = false | ||
|
||
|
@@ -17,10 +14,6 @@ publish = false | |
name = "config" | ||
path = "config.rs" | ||
|
||
[features] | ||
## Data structures implement `serde::Serialize` and `serde::Deserialize`. | ||
serde = ["gix-config/serde"] | ||
|
||
[dev-dependencies] | ||
gix-config = { path = ".."} | ||
gix-testtools = { path = "../../tests/tools"} | ||
|
@@ -29,12 +22,4 @@ gix-ref = { path = "../../gix-ref" } | |
gix-path = { path = "../../gix-path" } | ||
gix-sec = { path = "../../gix-sec" } | ||
serial_test = { version = "2.0.0", default-features = false } | ||
serde_derive = "1.0" | ||
criterion = "0.5.1" | ||
tempfile = "3.2.0" | ||
bstr = { version = "1.3.0", default-features = false, features = ["std"] } | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
features = ["document-features"] | ||
rustdoc-args = ["--cfg", "docsrs"] |
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
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
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
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 |
---|---|---|
|
@@ -4,18 +4,14 @@ version = "0.0.0" | |
publish = false | ||
repository = "https://github.com/Byron/gitoxide" | ||
license = "MIT OR Apache-2.0" | ||
description = "Please use `gix-<thiscrate>` instead ('git' -> 'gix')" | ||
description = "Tests for the gix-diff crate" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
edition = "2021" | ||
include = ["src/**/*"] | ||
rust-version = "1.65" | ||
|
||
[features] | ||
serde = ["gix-diff/serde", "gix-hash/serde", "gix-object/serde"] | ||
|
||
[[test]] | ||
name = "diff" | ||
doctest = false | ||
name = "diff" | ||
path = "diff.rs" | ||
|
||
[dev-dependencies] | ||
|
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,12 +1,11 @@ | ||
[package] | ||
name = "gix-pack-tests" | ||
version = "0.30.1" | ||
version = "0.0.0" | ||
repository = "https://github.com/Byron/gitoxide" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
description = "Please use `gix-<thiscrate>` instead ('git' -> 'gix')" | ||
edition = "2018" | ||
include = ["src/**/*", "CHANGELOG.md"] | ||
rust-version = "1.65" | ||
|
||
[features] | ||
|
@@ -22,7 +21,6 @@ gix-pack = { path = ".." } | |
gix-features = { path = "../../gix-features" } | ||
gix-testtools = { path = "../../tests/tools"} | ||
gix-odb = { path = "../../gix-odb" } | ||
tempfile = "3.1.0" | ||
bstr = { version = "1.3.0", default-features = false, features = ["std"] } | ||
maplit = "1.0.2" | ||
gix-object = { path = "../../gix-object" } | ||
|
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
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
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 |
---|---|---|
|
@@ -3,10 +3,9 @@ name = "gix-traverse-tests" | |
version = "0.0.0" | ||
repository = "https://github.com/Byron/gitoxide" | ||
license = "MIT OR Apache-2.0" | ||
description = "Please use `gix-<thiscrate>` instead ('git' -> 'gix')" | ||
description = "Integration tests for the gix-traverse crate" | ||
authors = ["Sebastian Thiel <[email protected]>"] | ||
edition = "2021" | ||
include = ["src/**/*"] | ||
rust-version = "1.65" | ||
|
||
[[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
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