Skip to content
This repository was archived by the owner on Oct 10, 2019. It is now read-only.

Commit 0a97fa7

Browse files
authored
Merge pull request #10 from hcpl/update-deps
Update dependencies
2 parents 019847a + 71c1bea commit 0a97fa7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ proc-macro = true
1313
test = false
1414

1515
[dependencies]
16-
syn = "0.12"
17-
quote = "0.4"
16+
syn = "0.13"
17+
quote = "0.5"
1818

1919
[dev-dependencies]
2020
postgres = "0.15.1"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Syntax extensions to automatically derive `FromSql` and `ToSql` implementations for Postgres enum,
66
domain, and composite types.
77

8-
The generated code requires rust-postgres 0.14 or 0.15 and Rust 1.15.0 or higher.
8+
The generated code requires rust-postgres 0.14 or 0.15 and Rust 1.20.0 or higher.
99

1010
# Usage
1111

circle.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
build:
44
working_directory: ~/build
55
docker:
6-
- image: jimmycuadra/rust:1.19.0
6+
- image: rust:1.20.0
77
- image: postgres:9.6
88
environment:
99
POSTGRES_PASSWORD: password
@@ -17,10 +17,10 @@ jobs:
1717
paths:
1818
- ~/.cargo/registry/index
1919
- restore_cache:
20-
key: dependencies-1.19-{{ checksum "Cargo.lock" }}
20+
key: dependencies-1.20-{{ checksum "Cargo.lock" }}
2121
- run: cargo test
2222
- save_cache:
23-
key: dependencies-1.19-{{ checksum "Cargo.lock" }}
23+
key: dependencies-1.20-{{ checksum "Cargo.lock" }}
2424
paths:
2525
- target
2626
- ~/.cargo/registry/cache

0 commit comments

Comments
 (0)