b4c24d5ab3
* Web-domain based routing * Support base32-encoded urls * Proper support for non-domain based routing * Handling long domain names * Switching to web3.site * Encoding for *.web3.site urls * Add DappUrlInput component * Update Web views with store * Update spec description * Update spec description * edited url does not allow in-place store edits * Fixing dapps access on 127.0.0.1:8180 * Use /web/<hash> urls for iframe * Redirecting to parity.web3.site * Disabling the redirection
52 lines
1.4 KiB
TOML
52 lines
1.4 KiB
TOML
[package]
|
|
description = "Parity Dapps crate"
|
|
name = "ethcore-dapps"
|
|
version = "1.6.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
rand = "0.3"
|
|
log = "0.3"
|
|
env_logger = "0.3"
|
|
futures = "0.1"
|
|
jsonrpc-core = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
jsonrpc-http-server = { git = "https://github.com/ethcore/jsonrpc.git" }
|
|
hyper = { default-features = false, git = "https://github.com/ethcore/hyper" }
|
|
unicase = "1.3"
|
|
url = "1.0"
|
|
rustc-serialize = "0.3"
|
|
serde = "0.8"
|
|
serde_json = "0.8"
|
|
linked-hash-map = "0.3"
|
|
parity-dapps-glue = "1.4"
|
|
base32 = "0.3"
|
|
mime = "0.2"
|
|
mime_guess = "1.6.1"
|
|
time = "0.1.35"
|
|
serde_macros = { version = "0.8", optional = true }
|
|
zip = { version = "0.1", default-features = false }
|
|
ethcore-devtools = { path = "../devtools" }
|
|
ethcore-rpc = { path = "../rpc" }
|
|
ethcore-util = { path = "../util" }
|
|
fetch = { path = "../util/fetch" }
|
|
parity-ui = { path = "./ui" }
|
|
parity-hash-fetch = { path = "../hash-fetch" }
|
|
parity-reactor = { path = "../util/reactor" }
|
|
|
|
clippy = { version = "0.0.103", optional = true}
|
|
|
|
[build-dependencies]
|
|
serde_codegen = { version = "0.8", optional = true }
|
|
|
|
[features]
|
|
default = ["serde_codegen"]
|
|
nightly = ["serde_macros"]
|
|
dev = ["clippy", "ethcore-rpc/dev", "ethcore-util/dev"]
|
|
|
|
ui = ["parity-ui/no-precompiled-js"]
|
|
ui-precompiled = ["parity-ui/use-precompiled-js"]
|