Skip to content

Commit fbf9c39

Browse files
authored
Merge pull request #2230 from yuki0iq/doc_auto_cfg
Remove `doc_auto_cfg` feature
2 parents fb13346 + bdcce5f commit fbf9c39

File tree

102 files changed

+21508
-19953
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+21508
-19953
lines changed

Cargo.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ gitoxide-core-async-client = ["gitoxide-core/async-client", "futures-lite"]
152152
anyhow = "1.0.98"
153153

154154
gitoxide-core = { version = "^0.49.0", path = "gitoxide-core" }
155-
gix-features = { version = "^0.44.0", path = "gix-features" }
156-
gix = { version = "^0.74.0", path = "gix", default-features = false }
155+
gix-features = { version = "^0.44.1", path = "gix-features" }
156+
gix = { version = "^0.74.1", path = "gix", default-features = false }
157157

158158
clap = { version = "4.5.42", features = ["derive", "cargo"] }
159159
clap_complete = "4.5.55"

gitoxide-core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ serde = ["gix/serde", "dep:serde_json", "dep:serde", "bytesize/serde"]
4949

5050
[dependencies]
5151
# deselect everything else (like "performance") as this should be controllable by the parent application.
52-
gix = { version = "^0.74.0", path = "../gix", default-features = false, features = ["merge", "blob-diff", "blame", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
53-
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.61.0", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static", "generate", "streaming-input"] }
54-
gix-transport-configuration-only = { package = "gix-transport", version = "^0.49.0", path = "../gix-transport", default-features = false }
55-
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.23.0", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
56-
gix-status = { version = "^0.21.0", path = "../gix-status" }
52+
gix = { version = "^0.74.1", path = "../gix", default-features = false, features = ["merge", "blob-diff", "blame", "revision", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status", "dirwalk"] }
53+
gix-pack-for-configuration-only = { package = "gix-pack", version = "^0.61.1", path = "../gix-pack", default-features = false, features = ["pack-cache-lru-dynamic", "pack-cache-lru-static", "generate", "streaming-input"] }
54+
gix-transport-configuration-only = { package = "gix-transport", version = "^0.49.1", path = "../gix-transport", default-features = false }
55+
gix-archive-for-configuration-only = { package = "gix-archive", version = "^0.23.1", path = "../gix-archive", optional = true, features = ["tar", "tar_gz"] }
56+
gix-status = { version = "^0.21.1", path = "../gix-status" }
5757
gix-fsck = { version = "^0.13.0", path = "../gix-fsck" }
5858
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
5959
anyhow = "1.0.100"
@@ -70,7 +70,7 @@ futures-io = { version = "0.3.16", optional = true }
7070
blocking = { version = "1.6.2", optional = true }
7171

7272
# for 'organize' functionality
73-
gix-url = { version = "^0.33.0", path = "../gix-url", optional = true }
73+
gix-url = { version = "^0.33.1", path = "../gix-url", optional = true }
7474
jwalk = { version = "0.8.0", optional = true }
7575

7676
# for 'hours'

gitoxide-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
all(doc, feature = "document-features"),
2626
doc = ::document_features::document_features!()
2727
)]
28-
#![cfg_attr(all(doc, feature = "document-features"), feature(doc_cfg, doc_auto_cfg))]
28+
#![cfg_attr(all(doc, feature = "document-features"), feature(doc_cfg))]
2929
#![cfg_attr(feature = "async-client", allow(unused))]
3030
#![deny(rust_2018_idioms)]
3131
#![forbid(unsafe_code)]

0 commit comments

Comments
 (0)