mirror of
https://github.com/pezkuwichain/revive-differential-tests.git
synced 2026-04-29 05:27:59 +00:00
98b62d705f
* Generate schema for the metadata file * Groundwork for dyn traits * Make the ethereum node trait object compatible * Allow for compilers to be created in the dyn trait * Add more identifiers to the platform * Implement the dyn compiler trait for compilers * Support the dyn compiler in the builder pattern * Introduce a geth platform * Provide a common node implementation for substrate chains * Add all of the platforms that we support * Add a way to convert platform identifier into a platform * Replace infra with the dyn infra * Remoe all references to leader and follower * Remove the old traits * Remove an un-needed dependency * Update the default values for the platforms * Final set of renames * Update the default values of the cli * Update tests
24 lines
672 B
TOML
24 lines
672 B
TOML
[package]
|
|
name = "revive-dt-common"
|
|
description = "A library containing common concepts that other crates in the workspace can rely on"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
clap = { workspace = true }
|
|
moka = { workspace = true, features = ["sync"] }
|
|
once_cell = { workspace = true }
|
|
semver = { workspace = true }
|
|
serde = { workspace = true }
|
|
schemars = { workspace = true }
|
|
strum = { workspace = true }
|
|
tokio = { workspace = true, default-features = false, features = ["time"] }
|
|
|
|
[lints]
|
|
workspace = true
|