-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (53 loc) · 1.34 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
[alias]
b = "build"
c = "check"
t = "test"
r = "run"
[package]
name = "ate"
version = "2.0.0"
authors = ["Johnathan Sharratt <johnathan.sharratt@gmail.com>"]
edition = "2018"
description = "Distributed immutable data store with strong encryption and authentication"
license-file = "LICENSE"
keywords = ["immutable", "database", "kafka", "blockchain", "datastore", "immutable objects", "quantum algorithms", "materialized views", "materialized view", "immutable store", "nosql"]
categories = ["Asynchronous", "Caching", "Cryptography", "Database implementations"]
repository = "https://github.com/john-sharratt/ate-2.0"
readme = "README.md"
[lib]
proc-macro = true
[dependencies]
uuid = { version = "*", features = ["serde", "v4"] }
tokio = { version = "*", features = ["full", "signal", "process"] }
serde = { version = "*", features = ["derive"] }
serde-big-array = "*"
serde_json = "*"
rmp = "*"
rmp-serde = "*"
derive-new = "*"
bytes = "*"
futures = "*"
futures-util = "*"
hash = "*"
fxhash = "*"
async-trait = "*"
fastrand = "*"
rust-crypto = "*"
rand = "*"
rand_chacha = "*"
buffered_offset_reader = "*"
async-drop = "*"
typed-arena = "*"
snap = "*"
openssl = { version = "*", features = ["vendored"] }
once_cell = "*"
pqcrypto-falcon = "*"
pqcrypto-traits = "*"
sha3 = "*"
multimap = "*"
hex = "*"
chrono = "*"
pnet = "*"
log = "0.4.11"
[dev-dependencies]
ctor = "*"