Infrastructure

This commit is contained in:
Tony Garnock-Jones 2019-09-17 14:28:51 +01:00
parent 8e64a9c4a5
commit 98b3b72b40
3 changed files with 19 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
Cargo.lock
/target
**/*.rs.bk

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "syndicate-rs"
version = "0.1.0"
authors = ["Tony Garnock-Jones <tonyg@leastfixedpoint.com>"]
edition = "2018"
[dependencies]
preserves = "0.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
# cargo install cargo-watch
watch:
cargo watch -x check -x 'test -- --nocapture'
inotifytest:
inotifytest sh -c 'reset; cargo build && RUST_BACKTRACE=1 cargo test -- --nocapture'