diff options
| author | metamuffin <metamuffin@disroot.org> | 2022-10-15 21:29:01 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2022-10-15 21:29:01 +0200 |
| commit | 4dc45825e4b86fcda4ff5dcc0231a5fd6e745164 (patch) | |
| tree | 5d5af3a73392da6792f4773e99944b1a12140e86 /Cargo.toml | |
| download | trash-proxy-4dc45825e4b86fcda4ff5dcc0231a5fd6e745164.tar trash-proxy-4dc45825e4b86fcda4ff5dcc0231a5fd6e745164.tar.bz2 trash-proxy-4dc45825e4b86fcda4ff5dcc0231a5fd6e745164.tar.zst | |
a
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..cff762c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "rubbish-proxy" +version = "0.1.0" +edition = "2021" + + +[dependencies] +anyhow = "1.0.65" +azalea = { git = "https://github.com/mat-1/azalea" } +azalea-protocol = { git = "https://github.com/mat-1/azalea" } +azalea-chat = { git = "https://github.com/mat-1/azalea" } +env_logger = "0.9.1" +uuid = "1.1.2" +parking_lot = "^0.12.1" +tokio = { version = "1.19.2", features = ["full"] } +log = "0.4" +serde = { version = "1.0", features = ["derive"] } +serde_yaml = "0.9.13" +future-utils = "0.12.1" +bytes = "1.2.1" + |