I'm having an issue with a repository of mine where the list of dependents includes a reference to the original repository.
The dependency list in the Cargo.toml file does not include a reference to itself, however I discovered that the generated Cargo.lock file does:
[[package]]
name = "polykill"
version = "0.2.0"
dependencies = [
"bytesize",
"clap",
"console",
]
(line 219-226 of Cargo.lock)
Is this normal behaviour? I haven't noticed any other problems caused by this recursive dependency but I was very confused when I saw this.
Here is the repository.