diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ce2f3f3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "xssbook" +version = "0.0.1" +edition = "2021" + +[dependencies] +tokio = { version = "1.23.0", features = ["full"] } +axum = { version = "0.6.4", features = ["headers"] } +tower-http = { version = "0.3.5", features = ["fs"] } +tower-cookies = "0.8.0" +tower = "0.4.13" +serde = { version = "1.0.152", features = ["derive"] } +serde_json = "1.0" +rusqlite = { version = "0.28.0", features = ["bundled"] } +rand = "0.8.5" +time = "0.3.17" +bytes = "1.3.0"
\ No newline at end of file |