This repository has been archived on 2022-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
itconfig/itconfig-tests/Cargo.toml

24 lines
498 B
TOML
Raw Normal View History

2019-12-23 14:56:19 +03:00
[package]
name = "itconfig_tests"
version = "0.1.0"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
edition = "2018"
license = "MIT"
2019-12-24 19:25:32 +03:00
publish = false
2019-12-23 14:56:19 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2019-12-27 23:57:13 +03:00
itconfig = { path = '../itconfig' }
criterion = "0.3.1"
lazy_static = "1.4.0"
2020-01-10 23:42:41 +03:00
[features]
2020-02-08 15:09:58 +03:00
default = ["meta_namespace", "static"]
2020-01-10 23:42:41 +03:00
meta_namespace = []
2020-02-08 15:09:58 +03:00
static = ["itconfig/static"]
[[bench]]
name = "main_benches"
harness = false