rvf 0.1.0

Rust implementation of the ValueFlows vocabulary for distributed economic networks
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rvf"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the ValueFlows vocabulary for distributed economic networks"
readme = "README.md"
keywords = [
    "valueflows",
    "economics",
    "p2p",
    "distributed",
    "rea",
]
categories = [
    "data-structures",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/kaichao/rvf"

[features]
async = [
    "dep:async-trait",
    "dep:tokio",
]
default = [
    "serde",
    "uuid",
]
full = [
    "serde",
    "uuid",
    "async",
]
serde = [
    "dep:serde",
    "dep:serde_json",
    "chrono/serde",
    "rust_decimal/serde",
]
uuid = ["dep:uuid"]

[lib]
name = "rvf"
path = "src/lib.rs"

[[example]]
name = "ai_agent_collaboration"
path = "examples/ai_agent_collaboration.rs"

[[example]]
name = "farm_to_bakery"
path = "examples/farm_to_bakery.rs"

[dependencies.async-trait]
version = "0.1"
optional = true

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.rust_decimal]
version = "1.33"
features = ["serde-with-str"]

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.35"
features = ["sync"]
optional = true

[dependencies.uuid]
version = "1.6"
features = [
    "v4",
    "serde",
]
optional = true

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tokio]
version = "1.35"
features = [
    "full",
    "test-util",
]