-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (41 loc) · 869 Bytes
/
Cargo.toml
File metadata and controls
45 lines (41 loc) · 869 Bytes
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
[package]
name = "astrocore"
version = "0.1.0"
authors = ["A.A.Abroskin <arkweid@evilmartians.com>"]
edition = "2018"
[dependencies]
sha2 = "0.8.0"
hmac = "0.7.1"
hkdf = "0.7.1"
rand = "0.6.5"
hex = "0.3"
log = "0.4"
env_logger = "0.6.0"
byteorder = "1"
base32 = "0.3.1"
crc16 = "0.3.4"
base64 = "0.9.0"
num-traits = "0.1.41"
num-bigint = "0.1.41"
bigdecimal = "0.0.10"
serde = { version = "1.0.27", features = ["derive"] }
serde_repr = "0.1"
serde_derive = "1.0.27"
serde_bytes = "0.10.3"
serde-xdr = "0.5.1"
itertools = "0.8"
toml = "0.4"
lazy_static = "1.3"
diesel = { version = "1.4", features = ["sqlite", "chrono", "r2d2"] }
chrono = "0.4.7"
dotenv = "0.10"
riker = "0.2.4"
riker-default = "0.2.4"
ed25519-dalek = "1.0.0-pre.1"
x25519-dalek = "0.5.2"
[dependencies.libsqlite3-sys]
version = "*"
features = ["bundled"]
[profile.dev]
debug = true
opt-level = 0