mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 08:51:08 +03:00
ee4eed71ea
* - Add backwards compatability - Add hex serialization * rustfmt * rustfmt * Windows Compatibility Fixes #1 (#2535) * initial changes for windows build and unit/integration tests * rustfmt * wallet+store tests * rustfmt * fix linux daemonize * better encapsulate file rename * rustfmt * remove daemonize commands * rustfmt * remove server start/stop commands * add ability to drop pmmr backend files explicitly for txhashset unzip * rustfmt * fix pmmr tests * rustfmt * Windows TUI Fix (#2555) * switch pancurses backend to win32 * revert changes to restore test * compatibility fix + debug messages * rustfmt * Add content disposition for OK responses (#2545) * Testing http send and fixing accordingly * add repost method into wallet owner api (#2553) * add repost method into wallet owner api * rustfmt * Add ability to compare selection strategies (#2516) Before tx creation user can estimate fee and locked amount with different selection strategies by providing `-e` flag for `wallet send` command.
31 lines
758 B
TOML
31 lines
758 B
TOML
[package]
|
|
name = "grin_store"
|
|
version = "1.0.1"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/mimblewimble/grin"
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
workspace = ".."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
byteorder = "1"
|
|
croaring = "=0.3.8"
|
|
env_logger = "0.5"
|
|
libc = "0.2"
|
|
failure = "0.1"
|
|
failure_derive = "0.1"
|
|
lmdb-zero = "0.4.4"
|
|
memmap = "0.7"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
log = "0.4"
|
|
|
|
grin_core = { path = "../core", version = "1.0.1" }
|
|
grin_util = { path = "../util", version = "1.0.1" }
|
|
|
|
[dev-dependencies]
|
|
chrono = "0.4.4"
|
|
rand = "0.5"
|
|
filetime = "0.2"
|