Skip to content

Commit 1ca0838

Browse files
committed
upgrade to tokio 0.3 and tokio-postgres 0.6
1 parent f4f5a26 commit 1ca0838

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

postgres_query/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ path = "examples/basic.rs"
1717

1818
[dependencies]
1919
postgres_query_macro = { version = "0.3.1", path = "../postgres_query_macro" }
20-
proc-macro-hack = "0.5.11"
21-
postgres-types = "0.1.0"
22-
serde = "1.0.104"
23-
tokio-postgres = "0.5.1"
24-
futures = "0.3.1"
25-
async-trait = "0.1.22"
26-
thiserror = "1.0.9"
20+
proc-macro-hack = "0.5.19"
21+
postgres-types = "0.1.3"
22+
serde = "1.0.117"
23+
tokio-postgres = "0.6.0"
24+
futures = "0.3.7"
25+
async-trait = "0.1.41"
26+
thiserror = "1.0.22"
2727

2828
[dev-dependencies]
29-
bytes = "0.5.3"
30-
tokio = { version = "0.2.6", features = ["macros"] }
31-
structopt = "0.3.7"
32-
anyhow = "1.0.26"
29+
bytes = "0.5.6"
30+
tokio = { version = "0.3.3", features = ["macros", "rt-multi-thread"] }
31+
structopt = "0.3.20"
32+
anyhow = "1.0.34"

postgres_query_macro/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ readme = "../README.md"
1212
proc-macro = true
1313

1414
[dependencies]
15-
proc-macro-hack = "0.5.11"
16-
quote = "1.0.2"
17-
syn = { version = "1.0.11", features = ["full"] }
18-
proc-macro2 = "1.0.6"
15+
proc-macro-hack = "0.5.19"
16+
quote = "1.0.7"
17+
syn = { version = "1.0.48", features = ["full"] }
18+
proc-macro2 = "1.0.24"

0 commit comments

Comments
 (0)