mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 03:21:08 +03:00
f8c316a351
* experimental xor token work * rustfmt * test implementation of build_coinbase_t function * rustfmt * add separate foreign_rpc_s interface for secure functions * rustfmt * rustfmt * fix http scheme to allow https as well * add tokenized owner API, modify all functions to use token * rustfmt * fix for api doctests, tests passing up to api crate * rustfmt * controller crate compilation * rustfmt * controller tests passing and modified some to use masked keychains * rustfmt * fix wallet tests * rustfmt * build from github * rustfmt
30 lines
925 B
TOML
30 lines
925 B
TOML
[package]
|
|
name = "grin_wallet_api"
|
|
version = "2.1.0-beta.1"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
description = "Grin Wallet API"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/mimblewimble/grin-wallet"
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
exclude = ["**/*.grin", "**/*.grin2"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
failure_derive = "0.1"
|
|
log = "0.4"
|
|
uuid = { version = "0.7", features = ["serde", "v4"] }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
easy-jsonrpc = "0.5.1"
|
|
chrono = { version = "0.4.4", features = ["serde"] }
|
|
|
|
grin_wallet_libwallet = { path = "../libwallet", version = "2.1.0-beta.1" }
|
|
grin_wallet_config = { path = "../config", version = "2.1.0-beta.1" }
|
|
grin_wallet_impls = { path = "../impls", version = "2.1.0-beta.1" }
|
|
grin_wallet_util = { path = "../util", version = "2.1.0-beta.1" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|
|
tempfile = "3.0.7"
|