diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-26 17:29:16 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-26 17:29:16 -0500 |
commit | 88209d88236c3d865a9f5174a0dced31920859bf (patch) | |
tree | 89a9985927393005cf632950b585a6a227b1c679 /Cargo.toml | |
download | xssbook-88209d88236c3d865a9f5174a0dced31920859bf.tar.gz xssbook-88209d88236c3d865a9f5174a0dced31920859bf.tar.bz2 xssbook-88209d88236c3d865a9f5174a0dced31920859bf.zip |
i did things
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 |