Create gitignore and use valid dependency

This commit is contained in:
Daniel McNab 2022-11-16 21:59:20 +00:00
parent a61c2eb451
commit d62cfc4e66
2 changed files with 5 additions and 1 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
## Rust
target/
# We're a library, so ignore Cargo.lock
Cargo.lock

View File

@ -6,7 +6,7 @@ authors = ["Raph Levien <raph@google.com>"]
edition = "2021" edition = "2021"
[dependencies] [dependencies]
"druid-shell" = { path = "../druid-shell" } "druid-shell" = "0.7"
bitflags = "1.3.2" bitflags = "1.3.2"
futures-task = "0.3" futures-task = "0.3"
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }