mirror of
https://github.com/shiroyashik/sculptor.git
synced 2025-12-06 04:51:13 +03:00
Pre-release
I don't remember exactly what was done in this commit anymore, so don't be discourteous
This commit is contained in:
parent
b280da2742
commit
59440154c1
18 changed files with 1016 additions and 185 deletions
24
Cargo.toml
24
Cargo.toml
|
|
@ -5,22 +5,27 @@ 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 handelers
|
||||
anyhow = "1.0.83"
|
||||
anyhow-http = { version = "0.3.0", features = ["axum"] }
|
||||
|
||||
# Serialization
|
||||
chrono = { version = "0.4.38", features = ["now"] }
|
||||
chrono = { version = "0.4.38", features = ["now", "serde"] }
|
||||
serde = { version = "1.0.201", features = ["derive"] }
|
||||
serde_json = "1.0.117"
|
||||
toml = "0.8.13"
|
||||
|
||||
# Other
|
||||
elyby-api = { path = "./elyby-api" }
|
||||
dashmap = "5.5.3"
|
||||
hex = "0.4.3"
|
||||
uuid = { version = "1.8.0", features = ["serde"] }
|
||||
base64 = "0.22.1"
|
||||
reqwest = { version = "0.12.4" }
|
||||
|
||||
# Crypto
|
||||
ring = "0.17.8"
|
||||
|
|
@ -30,12 +35,7 @@ rand = "0.8.5"
|
|||
axum = { version = "0.7.5", features = ["ws", "macros", "http2"] }
|
||||
tower-http = { version = "0.5.2", features = ["trace"] }
|
||||
tokio = { version = "1.37.0", features = ["full"] }
|
||||
hex = "0.4.3"
|
||||
uuid = { version = "1.8.0", features = ["serde"] }
|
||||
base64 = "0.22.1"
|
||||
serde_json = "1.0.117"
|
||||
anyhow-http = { version = "0.3.0", features = ["axum"] }
|
||||
|
||||
# TODO: Рассортировать!
|
||||
# TODO: Заменить Vec<u8> и &[u8] на Bytes
|
||||
# TODO: Sort it!
|
||||
# TODO: Replace Vec<u8> and &[u8] by Bytes
|
||||
# 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