🐘
In #rust cargo.toml the caret (^) is actually implied by default, and thus unnecessary to add.
e.g. these are equivalent:
tokio = "1.37.0"
tokio = "^1.37.0"
Very semvar-purist, I like it!
In #rust cargo.toml the caret (^) is actually implied by default, and thus unnecessary to add.
e.g. these are equivalent:
tokio = "1.37.0"
tokio = "^1.37.0"
Very semvar-purist, I like it!