Compare commits

..

2 Commits

Author SHA1 Message Date
projectmoon ac800b25f3 Update sqlx and refinery to newer versions
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is passing Details
For some reason, also required rewriting database tests to deal with
tempfile deleting files after scope drop. This never used to occur,
but now it does! So now the unit tests are in a closure where the temp
file is dropped at the end of the test. Really should just use sqlx
migrations, then we can get an in-memory database.
2021-09-04 23:34:51 +00:00
projectmoon c8c6f4d6f0 Fix dependency specification for rpc crate in dicebot.
continuous-integration/drone/push Build is passing Details
2021-09-04 23:24:52 +00:00
2 changed files with 1 additions and 4 deletions

View File

@ -40,7 +40,7 @@ substring = "1.4"
fuse-rust = "0.2"
tonic = "0.4"
prost = "0.7"
tenebrous-rpc = { path = "../rpc" }
tenebrous-rpc = { path = "../rpc", version = "0.1.0" }
[dependencies.sqlx]
version = "0.5"

View File

@ -1,3 +0,0 @@
fn main() {
println!("Hello, world!");
}