diff options
author | Vika <vika@fireburn.ru> | 2024-11-13 06:41:45 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-11-13 06:41:45 +0300 |
commit | 42506c91065cd69bd03ce68715662dd898e2181f (patch) | |
tree | b22dca97eedcd15ec957cd18f36c62a865397115 /tower-watchdog/Cargo.toml | |
parent | 3d40cca255d462cc190a602f7fb16c1f4ade821d (diff) | |
download | kittybox-42506c91065cd69bd03ce68715662dd898e2181f.tar.zst |
Wait, is this my first self-contained crate? Not bad. I like this. Maybe I'll go publish it to crates.io? Change-Id: I340d0839746ff1cfbcc4c82c230ae2adff2a92f7
Diffstat (limited to 'tower-watchdog/Cargo.toml')
-rw-r--r-- | tower-watchdog/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tower-watchdog/Cargo.toml b/tower-watchdog/Cargo.toml new file mode 100644 index 0000000..24cc0fe --- /dev/null +++ b/tower-watchdog/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "tower-watchdog" +version = "1.0.0" +edition = "2021" + +[dev-dependencies] +tower-test = "0.4.0" +tokio = { version = "1.29.1", features = [ "macros", "rt" ] } +[dependencies] +[dependencies.tokio] +version = "^1.29.1" +features = ["time", "sync"] +[dependencies.tower-layer] +version = "0.3.3" +[dependencies.tower-service] +version = "0.3.3" +[dependencies.futures] +version = "0.3.14" \ No newline at end of file |