mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
19488cf446
Updated missing fields/sections, even if some won't be used, to standardize. Also made FROST tests feature-gated.
24 lines
699 B
TOML
24 lines
699 B
TOML
[package]
|
|
name = "serai-extension"
|
|
version = "0.1.0"
|
|
description = "An ink! extension for exposing Serai to ink"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/contracts/extension"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
|
|
|
|
ink_env = { version = "3", default-features = false }
|
|
ink_lang = { version = "3", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["ink_env/std"]
|
|
ink-as-dependency = []
|