diff options
| author | Fuwn <[email protected]> | 2021-04-26 15:42:39 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-04-26 15:42:39 -0700 |
| commit | f4c92fbf8362f789ce3c00de6cf6a64ebc2502d8 (patch) | |
| tree | 78545fde636ec248aa039aa2ec1581b9b9055338 /Cargo.toml | |
| parent | fmt: Change case (diff) | |
| download | api-worker-f4c92fbf8362f789ce3c00de6cf6a64ebc2502d8.tar.xz api-worker-f4c92fbf8362f789ce3c00de6cf6a64ebc2502d8.zip | |
major: :star:
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3aeecf6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "senpy-api" +version = "0.1.0" +authors = ["Fuwn <[email protected]>"] +edition = "2018" +#description = "" +readme = "README.md" +homepage = "http://github.com/senpy-club/api" +repository = "http://github.com/senpy-club/api" +license = "GPL-3.0-only" +keywords = ["rust", "anime", "senpy"] +publish = false + +[dependencies] +rocket = { version = "0.5.0-dev", git = "https://github.com/SergioBenitez/Rocket.git" } +rocket_contrib = { version = "0.5.0-dev", git = "https://github.com/SergioBenitez/Rocket.git" } +reqwest = { version = "0.11.3", features = ["json"] } +tokio = { version = "1.5.0", features = ["full"] } +serde = "1.0.125" +serde_derive = "1.0.125" +rand = "0.8.3" +dotenv = "0.15.0" |