chore(tazjin/finito): Add build configuration

Adds a Naersk-based build to check that this compiles, with a Lockfile
based on the ~2018 crate versions.

Change-Id: I0460a476d3b983fcf71e35e6b480f4a526118b58
Reviewed-on: https://cl.tvl.fyi/c/depot/+/803
Reviewed-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2020-06-30 05:13:32 +01:00 committed by tazjin
parent 9e7b81391d
commit 37fdd5ae8b
4 changed files with 779 additions and 2 deletions

View file

@ -113,7 +113,7 @@ pub struct FinitoPostgres<S> {
}
impl <S> FinitoPostgres<S> {
pub fn new(state: S, db_pool: DBPool, pool_size: usize) -> Self {
pub fn new(state: S, db_pool: DBPool, _pool_size: usize) -> Self {
FinitoPostgres {
state, db_pool,
}