mirror of
https://github.com/OSMA-D/osma-server.git
synced 2024-11-05 21:24:02 +03:00
ci: cargo, gitignore, dependabot
This commit is contained in:
parent
f5aba5ab24
commit
f2137f1bc0
3 changed files with 37 additions and 0 deletions
6
.github/dependabot.yml
vendored
Normal file
6
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "cargo"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -12,3 +12,10 @@ Cargo.lock
|
|||
|
||||
# MSVC Windows builds of rustc generate these, which store debugging information
|
||||
*.pdb
|
||||
|
||||
|
||||
# Added by cargo
|
||||
|
||||
/target
|
||||
|
||||
.env
|
24
Cargo.toml
Normal file
24
Cargo.toml
Normal file
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "osma-server"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
dotenv = "0.15.0"
|
||||
|
||||
actix-web = "4"
|
||||
actix-rt = "2.7.0"
|
||||
actix-cors = "0.6.1"
|
||||
actix-web-grants = "3.0.1"
|
||||
actix-web-httpauth = "0.8"
|
||||
|
||||
mongodb = { version = "2.1.0"}
|
||||
bson = "2.1.0"
|
||||
futures = "0.3.21"
|
||||
|
||||
jsonwebtoken = "8"
|
||||
serde = {version = "1.0", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
||||
sha3 = "0.10.1"
|
||||
chrono = "0.4"
|
Loading…
Reference in a new issue