mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-05 05:57:38 +03:00
Remove ~ from dependency specifications
In cargo ~ is the default and it is conventional to omit it.
This commit is contained in:
parent
c45da71704
commit
b66fde914f
1 changed files with 6 additions and 6 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -10,10 +10,10 @@ repository = "https://github.com/jedisct1/rust-doh"
|
||||||
categories = ["asynchronous", "network-programming","command-line-utilities"]
|
categories = ["asynchronous", "network-programming","command-line-utilities"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
base64 = "~0.9"
|
base64 = "0.9"
|
||||||
clap = "~2"
|
clap = "2"
|
||||||
futures = "~0.1"
|
futures = "0.1"
|
||||||
hyper = "~0.11"
|
hyper = "0.11"
|
||||||
tokio = "~0.1"
|
tokio = "0.1"
|
||||||
tokio-timer = "~0.2"
|
tokio-timer = "0.2"
|
||||||
clippy = {version = ">=0", optional = true}
|
clippy = {version = ">=0", optional = true}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue