cargo: drop dependency on config crate
Some checks are pending
binaries / Build binary artifacts (push) Waiting to run
nix / flake check (push) Waiting to run
build / build (, macos-13) (push) Waiting to run
build / build (, macos-14) (push) Waiting to run
build / build (, ubuntu-latest) (push) Waiting to run
build / build (, windows-latest) (push) Waiting to run
build / build (--all-features, ubuntu-latest) (push) Waiting to run
build / Build jj-lib without Git support (push) Waiting to run
build / Check protos (push) Waiting to run
build / Check formatting (push) Waiting to run
build / Check that MkDocs can build the docs (push) Waiting to run
build / Check that MkDocs can build the docs with latest Python and uv (push) Waiting to run
build / cargo-deny (advisories) (push) Waiting to run
build / cargo-deny (bans licenses sources) (push) Waiting to run
build / Clippy check (push) Waiting to run
Codespell / Codespell (push) Waiting to run
website / prerelease-docs-build-deploy (ubuntu-latest) (push) Waiting to run
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run

This commit is contained in:
Yuya Nishihara 2024-12-08 23:00:24 +09:00
parent 118e76e5c2
commit 0975cb5374
5 changed files with 0 additions and 52 deletions

48
Cargo.lock generated
View file

@ -457,20 +457,6 @@ dependencies = [
"static_assertions", "static_assertions",
] ]
[[package]]
name = "config"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23738e11972c7643e4ec947840fc463b6a571afcd3e735bdfce7d03c7a784aca"
dependencies = [
"async-trait",
"lazy_static",
"nom",
"pathdiff",
"serde",
"toml",
]
[[package]] [[package]]
name = "console" name = "console"
version = "0.15.8" version = "0.15.8"
@ -1970,7 +1956,6 @@ dependencies = [
"clap_complete", "clap_complete",
"clap_complete_nushell", "clap_complete_nushell",
"clap_mangen", "clap_mangen",
"config",
"criterion", "criterion",
"crossterm", "crossterm",
"dirs", "dirs",
@ -2025,7 +2010,6 @@ dependencies = [
"chrono", "chrono",
"chrono-english", "chrono-english",
"clru", "clru",
"config",
"criterion", "criterion",
"digest", "digest",
"either", "either",
@ -2257,12 +2241,6 @@ dependencies = [
"libc", "libc",
] ]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]] [[package]]
name = "miniz_oxide" name = "miniz_oxide"
version = "0.7.4" version = "0.7.4"
@ -2326,16 +2304,6 @@ version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03" checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]] [[package]]
name = "nu-ansi-term" name = "nu-ansi-term"
version = "0.46.0" version = "0.46.0"
@ -2458,12 +2426,6 @@ version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
[[package]] [[package]]
name = "percent-encoding" name = "percent-encoding"
version = "2.3.1" version = "2.3.1"
@ -3309,7 +3271,6 @@ name = "testutils"
version = "0.24.0" version = "0.24.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"config",
"futures 0.3.31", "futures 0.3.31",
"git2", "git2",
"hex", "hex",
@ -3467,15 +3428,6 @@ dependencies = [
"tokio", "tokio",
] ]
[[package]]
name = "toml"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
"serde",
]
[[package]] [[package]]
name = "toml_datetime" name = "toml_datetime"
version = "0.6.8" version = "0.6.8"

View file

@ -39,7 +39,6 @@ chrono = { version = "0.4.39", default-features = false, features = [
] } ] }
chrono-english = { version = "0.1.7" } chrono-english = { version = "0.1.7" }
clru = "0.6.2" clru = "0.6.2"
config = { version = "0.13.4", default-features = false, features = ["toml"] }
criterion = "0.5.1" criterion = "0.5.1"
crossterm = { version = "0.27", default-features = false } crossterm = { version = "0.27", default-features = false }
digest = "0.10.7" digest = "0.10.7"

View file

@ -56,7 +56,6 @@ clap-markdown = { workspace = true }
clap_complete = { workspace = true } clap_complete = { workspace = true }
clap_complete_nushell = { workspace = true } clap_complete_nushell = { workspace = true }
clap_mangen = { workspace = true } clap_mangen = { workspace = true }
config = { workspace = true }
criterion = { workspace = true, optional = true } criterion = { workspace = true, optional = true }
crossterm = { workspace = true } crossterm = { workspace = true }
dirs = { workspace = true } dirs = { workspace = true }

View file

@ -39,7 +39,6 @@ bstr = { workspace = true }
chrono = { workspace = true } chrono = { workspace = true }
chrono-english = { workspace = true } chrono-english = { workspace = true }
clru = { workspace = true } clru = { workspace = true }
config = { workspace = true }
digest = { workspace = true } digest = { workspace = true }
either = { workspace = true } either = { workspace = true }
futures = { workspace = true } futures = { workspace = true }

View file

@ -16,7 +16,6 @@ readme = { workspace = true }
[dependencies] [dependencies]
async-trait = { workspace = true } async-trait = { workspace = true }
config = { workspace = true }
futures = { workspace = true } futures = { workspace = true }
git2 = { workspace = true } git2 = { workspace = true }
hex = { workspace = true } hex = { workspace = true }