diff --git a/Cargo.toml b/Cargo.toml index 5555cc5..4e70536 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,13 +8,13 @@ repository = "https://github.com/jowax/qbittorrent-web-api" description = "Generated web api for qBittorrent" [dependencies] -reqwest = { version = "0.11.11", features = ["json", "multipart"] } -tokio = { version = "1.19.2", features = ["full"] } +reqwest = { version = "0.11", features = ["json", "multipart"] } +tokio = { version = "1.19", features = ["full"] } qbittorrent-web-api-gen = { path = "./qbittorrent-web-api-gen", version = "0.6.3" } -serde = { version = "1.0.138", features = ["derive"] } -serde_json = "1.0.82" -serde_repr = "0.1.9" -thiserror = "1.0.31" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +serde_repr = "0.1" +thiserror = "1.0" [workspace] members = ["qbittorrent-web-api-gen"] diff --git a/qbittorrent-web-api-gen/Cargo.toml b/qbittorrent-web-api-gen/Cargo.toml index 189492f..5486be7 100644 --- a/qbittorrent-web-api-gen/Cargo.toml +++ b/qbittorrent-web-api-gen/Cargo.toml @@ -25,19 +25,19 @@ name = "tests" path = "tests/tests.rs" [dependencies] -syn = { version = "1.0.98", features = ["extra-traits"] } -quote = "1.0.20" -proc-macro2 = "1.0.40" -case = "1.0.0" +syn = { version = "1.0", features = ["extra-traits"] } +quote = "1.0" +proc-macro2 = "1.0" +case = "1.0" thiserror = "1.0.31" -serde = { version = "1.0.138", features = ["derive"] } -serde_json = "1.0.82" -serde_repr = "0.1.9" -regex = "1.6.0" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +serde_repr = "0.1" +regex = "1.6" [dev-dependencies] -trybuild = { version = "1.0.63", features = ["diff"] } -anyhow = "1.0.58" -tokio = { version = "1.19.2", features = ["full"] } -reqwest = { version = "0.11.11", features = ["json", "multipart"] } -pretty_assertions = "1.2.1" +trybuild = { version = "1.0", features = ["diff"] } +anyhow = "1.0" +tokio = { version = "1.19", features = ["full"] } +reqwest = { version = "0.11", features = ["json", "multipart"] } +pretty_assertions = "1.2"