-
Notifications
You must be signed in to change notification settings - Fork 108
/
Cargo.toml
43 lines (38 loc) · 1.1 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
[package]
name = "wagyu-monero"
version = "0.6.3"
authors = [
"Collin Chin",
"Raymond Chu",
"Ali Mousa",
"Howard Wu"
]
description = "A library for generating Monero wallets"
homepage = "https://github.com/AleoHQ/wagyu"
repository = "https://github.com/AleoHQ/wagyu/tree/v0.6.3/monero"
categories = ["command-line-utilities", "cryptocurrency"]
keywords = ["blockchain", "crypto", "cryptocurrency", "monero", "wallet"]
readme = "README.md"
license = "MIT/Apache-2.0"
edition = "2018"
build = "build.rs"
[features]
default = ["std"]
std = ["wagyu-model/std"]
transaction = []
[dependencies]
wagyu-model = { path = "../model", version = "0.6.3" }
base58-monero = { version = "0.2.0" }
crc = { version = "1.8.1" }
curve25519-dalek = { version = "2.1.0" }
failure = { version = "0.1.8" }
hex = { version = "0.4.2" }
libc = { version = "0.2" }
rand = { version = "0.7" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
tiny-keccak = { version = "1.4" }
[build-dependencies]
cmake = { version = "0.1" }
[badges]
travis-ci = { repository = "AleoHQ/wagyu", branch = "master" }