diff options
author | Shav Kinderlehrer <[email protected]> | 2024-04-05 22:41:10 -0400 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2024-04-05 22:41:10 -0400 |
commit | fd0a9302450a4f5e0108d03a95db1601c00b5e4c (patch) | |
tree | 0148f837b026707a7a6ba235a376111e07b02899 /Cargo.toml | |
download | chela-fd0a9302450a4f5e0108d03a95db1601c00b5e4c.tar.gz chela-fd0a9302450a4f5e0108d03a95db1601c00b5e4c.zip |
Implement get
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f7d1a5e --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "url_shortener" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +axum = "0.7.5" +color-eyre = "0.6.3" +eyre = "0.6.12" +info_utils = "2.2.3" +serde = "1.0.197" +sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres", "macros", "migrate", "tls-rustls"] } +tokio = { version = "1.37.0", features = ["full"] } +url = "2.5.0" |