Files
AstralRinth/Cargo.toml
Aeledfyr 6d16b68f11 Create schema for the API (#28)
* feat(schema): add basic structs for schema

* feat(schema): implement base62 id parsing

* docs(schema): add documentation for schema structs
fix(schema): prevent integer overflow in base62 decoding

* refactor(schema): move ids into submodules, reexport from ids mod

* feat(schema): add random generation of base62 ids
style: run rustfmt
2020-07-01 22:24:42 +02:00

35 lines
771 B
TOML

[package]
name = "fabricate"
version = "0.1.0"
#Team members, please add your emails and usernames
authors = ["geometrically <jai.a@tuta.io>", "Redblueflame <contact@redblueflame.com>", "Aeledfyr <aeledfyr@gmail.com>", "cfanoulis"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "2.0"
actix-rt = "1.1.1"
actix-files = "0.2.2"
reqwest = "0.10.4"
meilisearch-sdk = "0.1.4"
serde_json = "1.0"
serde = {version="1.0", features=["derive"]}
chrono = { version = "0.4", features = ["serde"] }
rand = "0.7"
dotenv = "0.15"
log = "0.4.8"
env_logger = "0.7.1"
mongodb = "1.0.0"
bson = "1.0.0"
thiserror = "1.0.20"
async-trait = "0.1.36"
futures = "0.3.5"
futures-timer = "3.0.2"