-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (56 loc) · 1.9 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
67
68
69
[package]
name = "my_no_sql_server"
version = "0.0.22"
authors = ["amigin <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
my-http-server = { tag = "0.8.2", git = "https://github.com/MyJetTools/my-http-server.git", features = [
"macros",
"controllers",
"static-files",
] }
my-no-sql-sdk = { tag = "0.4.1", git = "https://github.com/MyJetTools/my-no-sql-sdk.git", features = [
"master-node",
"tcp-contracts",
] }
my-no-sql-server-core = { tag = "0.4.0", git = "https://github.com/MyJetTools/my-no-sql-server-core.git", features = [
"master-node",
] }
my-azure-storage-sdk = { tag = "0.5.1", git = "https://github.com/MyJetTools/my-azure-storage.git" }
flurl = { tag = "0.6.1", git = "https://github.com/MyJetTools/fl-url" }
my-logger = { tag = "1.2.1", git = "https://github.com/MyJetTools/my-logger.git" }
my-tcp-sockets = { tag = "0.1.11", git = "https://github.com/MyJetTools/my-tcp-sockets.git" }
my-sqlite = { tag = "0.1.2", git = "https://github.com/MyJetTools/my-sqlite.git", features = [
"macros",
] }
tonic = { version = "*", features = ["tls", "tls-roots", "prost"] }
anyhow = "*"
tokio = { version = "*", features = ["full"] }
prost = "*"
serde = { version = "*", features = ["derive"] }
tokio-util = "*"
futures = "*"
chrono = "*"
futures-util = { version = "*" }
futures-core = { version = "*" }
futures-channel = "*"
serde_json = "*"
serde_derive = "*"
quick-xml = "*"
lazy_static = "*"
hmac = "*"
sha2 = "*"
base64 = "*"
serde_yaml = "*"
uuid = { version = "*", features = ["serde", "v4"] }
prometheus = "*"
async-trait = "*"
tokio-stream = "*"
zip = "*"
tikv-jemalloc-ctl = { version = "*", features = ['use_std'] }
tikv-jemallocator = { version = "*", features = [
"unprefixed_malloc_on_supported_platforms",
] }
[build-dependencies]
tonic-build = { version = "*", features = ["prost"] }