1dec2c2663
Add [workspace.package] version = "0.1.0" to the root Cargo.toml and switch all 21 member crates to version.workspace = true so the entire workspace is versioned from a single place. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Signed-off-by: Stan Grams <sjg@haxx.space>
14 lines
329 B
TOML
14 lines
329 B
TOML
# SPDX-FileCopyrightText: 2025 Stanislaw Grams <stanislawgrams@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
[package]
|
|
name = "trx-protocol"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
trx-core = { path = "../trx-core" }
|