Switch to semver for dependencies
This commit is contained in:
parent
7b50b884f4
commit
f693faed12
22
Cargo.toml
22
Cargo.toml
|
|
@ -6,14 +6,14 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde_json = "~1.0"
|
serde_json = "1.0"
|
||||||
tokio = {version="~1.17", features=["rt-multi-thread", "macros"]}
|
tokio = {version="1.17", features=["rt-multi-thread", "macros"]}
|
||||||
tokio-util = {version="~0.7", features=["io"]}
|
tokio-util = {version="0.7", features=["io"]}
|
||||||
reqwest = {version="~0.11", features=["json", "stream"]}
|
reqwest = {version="0.11", features=["json", "stream"]}
|
||||||
proj = "~0.25"
|
proj = "0.25"
|
||||||
geo-types = "~0.7"
|
geo-types = "0.7"
|
||||||
clap = {version="~3.1", features=["derive"]}
|
clap = {version="3.1", features=["derive"]}
|
||||||
anyhow = "~1.0"
|
anyhow = "1.0"
|
||||||
futures = "~0.3"
|
futures = "0.3"
|
||||||
bytes = "~1.1"
|
bytes = "1.1"
|
||||||
las = {version="~0.7", features=["laz"]}
|
las = {version="0.7", features=["laz"]}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue