-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (56 loc) · 1.55 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "voxov"
version = "0.1.0"
authors = ["Celio Grand <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-or-later"
rust-version = "1.68"
description = "A Pay-as-You-Go Backend-as-a-Service server"
#TODO documentation
readme = "README.md"
#TODO homepage
repository = "https://github.com/vorgv/voxov/"
keywords = ["payg", "baas"]
categories = ["web-programming"]
[features]
console = ["dep:console-subscriber"]
[workspace]
members = ["vctl", "vcli"]
[workspace.dependencies]
tokio = { version = "1.34.0", features = ["full"] }
bytes = "1.5"
reqwest = "0.11.22"
clap = { version = "4.3.24", features = ["derive"] }
chrono = { version = "0.4.31", features = ["serde"] }
serde = { version = "1.0.193", features = ["derive"] }
[dependencies]
# Workspace
vcli = { path = 'vcli' }
# Tokio
tokio = { workspace = true }
tokio-util = "0.7.10"
tokio-stream = "0.1.14"
bytes = { workspace = true }
# Hyper
hyper = { version = "1.0.1", features = ["full"] }
hyper-util = { version = "0.1.1", features = ["full"] }
http = "1.0.0"
http-body-util = "0.1.0"
# Database
redis = { version = "0.23.3", features = ["tokio-comp", "connection-manager"] }
mongodb = "2.7.1"
bson = { version = "2.7.0", features = ["chrono-0_4"] }
rust-s3 = { version = "0.34.0-rc4", features = ["with-tokio"] }
# Tool
blake3 = "1.5.0"
chrono = { workspace = true }
rand = "0.8.5"
hex = "0.4"
# Macros
strum_macros = "0.25"
serde = { workspace = true }
serde_json = "1.0.108"
# Test
reqwest = { workspace = true }
sysinfo = "0.29.10"
console-subscriber = { version = "0.2.0", optional = true }