[package] name = "grin_wallet_libwallet" version = "5.4.0-alpha.1" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." license = "Apache-2.0" repository = "https://github.com/mimblewimble/grin-wallet" keywords = [ "crypto", "grin", "mimblewimble" ] exclude = ["**/*.grin", "**/*.grin2"] #build = "src/build/build.rs" edition = "2018" [dependencies] blake2-rfc = "0.2" rand = "0.6" serde = "1" serde_derive = "1" serde_json = "1" log = "0.4" uuid = { version = "0.8", features = ["serde", "v4"] } chrono = { version = "0.4.11", features = ["serde"] } lazy_static = "1" strum = "0.18" strum_macros = "0.18" thiserror = "1" ed25519-dalek = "1.0.0-pre.4" x25519-dalek = "0.6" base64 = "0.9" regex = "1.3" sha2 = "0.10.0" bs58 = "0.3" age = "0.7" curve25519-dalek = "2.1" secrecy = "0.6" bech32 = "0.7" byteorder = "1.3" num-bigint = "0.2" #mwixnet onion chacha20 = "0.8.1" hmac = { version = "0.12.0", features = ["std"]} grin_wallet_util = { path = "../util", version = "5.4.0-alpha.1" } grin_wallet_config = { path = "../config", version = "5.4.0-alpha.1" } ##### Grin Imports # For Release grin_core = "5.3.3" grin_keychain = "5.3.3" grin_util = "5.3.3" grin_store = "5.3.3" # For beta release # grin_core = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3"} # grin_keychain = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" } # grin_util = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" } # grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v5.2.0-beta.3" } # For bleeding edge # grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" } # grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" } # grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" } # grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" } # For local testing # grin_core = { path = "../../grin/core"} # grin_keychain = { path = "../../grin/keychain"} # grin_util = { path = "../../grin/util"} # grin_store = { path = "../../grin/store"} #####