mirror of
https://github.com/shiroyashik/sculptor.git
synced 2025-12-06 04:51:13 +03:00
Начало положено...
This commit is contained in:
commit
3fd49300db
12 changed files with 2361 additions and 0 deletions
36
Cargo.toml
Normal file
36
Cargo.toml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
[package]
|
||||
name = "sculptor"
|
||||
authors = ["Shiroyashik <shiroyashik@shsr.ru>"]
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
[workspace]
|
||||
members = ["elyby-api"]
|
||||
|
||||
[dependencies]
|
||||
# Logging
|
||||
log = "0.4.21"
|
||||
fern = { version = "0.6.2", features = ["colored"] }
|
||||
|
||||
# Errors
|
||||
anyhow = "1.0.83"
|
||||
|
||||
# Serialization
|
||||
chrono = { version = "0.4.38", features = ["now"] }
|
||||
serde = { version = "1.0.201", features = ["derive"] }
|
||||
|
||||
# Other
|
||||
elyby-api = { path = "./elyby-api" }
|
||||
dashmap = "5.5.3"
|
||||
|
||||
# Crypto
|
||||
ring = "0.17.8"
|
||||
rand = "0.8.5"
|
||||
|
||||
# Web framework
|
||||
axum = { version = "0.7.5", features = ["ws", "macros"] }
|
||||
tower-http = { version = "0.5.2", features = ["trace"] }
|
||||
tokio = { version = "1.37.0", features = ["full"] }
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
Loading…
Add table
Add a link
Reference in a new issue