[package] name = "grin_wallet_impls" version = "5.4.0-alpha.1" authors = ["Grin Developers "] description = "Concrete types derived from libwallet traits" license = "Apache-2.0" repository = "https://github.com/mimblewimble/grin-wallet" keywords = [ "crypto", "grin", "mimblewimble" ] exclude = ["**/*.grin", "**/*.grin2"] edition = "2018" [dependencies] blake2-rfc = "0.2" thiserror = "1" futures = "0.3" rand = "0.6" serde = "1" serde_derive = "1" serde_json = "1" log = "0.4" ring = "0.16" uuid = { version = "0.8", features = ["serde", "v4"] } chrono = { version = "0.4.11", features = ["serde"] } lazy_static = "1" tokio = { version = "0.2", features = ["full"] } reqwest = { version = "0.10", features = ["rustls-tls", "socks"] } #Socks/Tor/Bridge/Proxy byteorder = "1" ed25519-dalek = "1.0.0-pre.4" x25519-dalek = "0.6" data-encoding = "2" regex = "1.3" timer = "0.2" sysinfo = "0.29" base64 = "0.12.0" url = "2.1" grin_wallet_util = { path = "../util", version = "5.4.0-alpha.1" } grin_wallet_config = { path = "../config", version = "5.4.0-alpha.1" } grin_wallet_libwallet = { path = "../libwallet", version = "5.4.0-alpha.1" } ##### Grin Imports # For Release # grin_core = "5.4.0-alpha.1" # grin_keychain = "5.4.0-alpha.1" # grin_chain = "5.4.0-alpha.1" # grin_util = "5.4.0-alpha.1" # grin_api = "5.4.0-alpha.1" # grin_store = "5.4.0-alpha.1" # 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_chain = { 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_api = { 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_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" } grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" } grin_api = { 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_chain = { path = "../../grin/chain"} # grin_util = { path = "../../grin/util"} # grin_api = { path = "../../grin/api"} # grin_store = { path = "../../grin/store"} ##### [dev-dependencies] "remove_dir_all" = "0.7"