-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
48 lines (46 loc) · 1.71 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
[package]
name = "atedb"
version = "1.8.0"
authors = ["Johnathan Sharratt <johnathan.sharratt@gmail.com>"]
edition = "2021"
description = "Distributed datachain (database) built on an immutable data store with strong encryption and authentication"
license = "MIT OR Apache-2.0"
keywords = ["immutable", "database", "server", "async" ]
categories = ["database", "cryptography", "database-implementations", "asynchronous"]
repository = "https://github.com/john-sharratt/ate/atedb"
readme = "README.md"
[features]
default = [ "client", "server" ]
client_web = [ "ate/client_web", "wasmer-auth/client_web" ]
client = [ "ate/client", "wasmer-auth/client", "libc" ]
server = [ "ate/server", "wasmer-auth/server", "ate/enable_mt", "libc" ]
[dependencies]
ate = { version = "^1.3", path = "../lib", default_features = false }
wasmer-auth = { version = "^1.9", path = "../wasmer-auth", default_features = false }
error-chain = { version = "^0.12", default_features = false }
tokio = { version = "1.20.1", features = ["full", "signal", "process"] }
serde = { version = "^1", features = ["derive"] }
#tracing = { version = "^0.1", features = [ "log", "release_max_level_info" ] }
tracing = { version = "^0.1", features = [ "log" ] }
tracing-futures = { version = "^0.2" }
tracing-subscriber = { version = "^0.2" }
futures = "^0.3"
futures-util = "^0.3"
async-trait = "^0.1"
bytes = "^1"
fxhash = "^0.2"
fastrand = "^1"
ctrlc-async = { version = "^3" }
libc = { version = "^0.2", optional = true }
enum_dispatch = { version = "^0.3" }
clap = { version = "^3.0.0-rc.7", features = [ "derive" ] }
ascii_tree = "0.1.1"
shellexpand = "^2"
cached = "^0.23"
seqlock = "^0.1"
array-init = "^1"
rpassword-wasi = "^5"
url = "^2"
pbr = "^1"
regex = "^1"
colored = "^2"