6c7af57529
* Normalizing dapps format for signer. * Adding new ui * Adding New UI to dapps * Adding parity styles for signer errors * Adding pre-compiled JS as submodule * Fixing struct declaration [ci:skip] * Bumping js * Adding styles * build dest * Correct whitespace @tomusdrw please note the alterations - no mixing tabs and spaces in the indentation portion and always just one tab per indent.
32 lines
956 B
TOML
32 lines
956 B
TOML
[package]
|
|
description = "Base Package for all Parity built-in dapps"
|
|
name = "parity-dapps-glue"
|
|
version = "1.4.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Ethcore <admin@ethcore.io"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
quasi_codegen = { version = "0.11", optional = true }
|
|
syntex = { version = "0.33", optional = true }
|
|
|
|
[dependencies]
|
|
glob = { version = "0.2.11" }
|
|
mime_guess = { version = "1.6.1" }
|
|
aster = { version = "0.17", default-features = false }
|
|
quasi = { version = "0.11", default-features = false }
|
|
quasi_macros = { version = "0.11", optional = true }
|
|
syntex = { version = "0.33", optional = true }
|
|
syntex_syntax = { version = "0.33", optional = true }
|
|
clippy = { version = "0.0.90", optional = true }
|
|
|
|
[features]
|
|
dev = ["clippy"]
|
|
default = ["with-syntex"]
|
|
nightly = ["quasi_macros"]
|
|
nightly-testing = ["clippy"]
|
|
with-syntex = ["quasi/with-syntex", "quasi_codegen", "quasi_codegen/with-syntex", "syntex", "syntex_syntax"]
|
|
use-precompiled-js = []
|
|
|
|
|