diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-12 23:47:43 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-12 23:47:43 -0400 |
commit | 0a06f163d1664bfd0ff938569223294edf9902f6 (patch) | |
tree | ac0dc03c010d3e5666b6a62249347ac434f76b44 /Cargo.toml | |
download | tuxman-0a06f163d1664bfd0ff938569223294edf9902f6.tar.gz tuxman-0a06f163d1664bfd0ff938569223294edf9902f6.tar.bz2 tuxman-0a06f163d1664bfd0ff938569223294edf9902f6.zip |
initial
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..98ffd29 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "rollback" +version = "0.1.0" +edition = "2021" + +[dependencies] +tokio = { version = "1", features = ["rt-multi-thread", "macros"] } +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +axum = { version = "0.6.12", features = ["ws"] } +tower-http = { version = "0.4.0", features = ["fs"] } |