Some checks failed
Build - Verify Code & Build Binaries / Check Code Format (push) Has been cancelled
Build - Verify Code & Build Binaries / Lint with Clippy (push) Has been cancelled
Build - Verify Code & Build Binaries / Test Suite (push) Has been cancelled
Build - Verify Code & Build Binaries / Cargo Check (push) Has been cancelled
Build - Verify Code & Build Binaries / Security Audit (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - macos-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - ubuntu-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Debug) - windows-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - macos-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - ubuntu-latest (push) Has been cancelled
Build - Verify Code & Build Binaries / Build (Release) - windows-latest (push) Has been cancelled
CI/CD with Staging Preset / Validate Installation with Staging Preset (macos-latest) (push) Has been cancelled
CI/CD with Staging Preset / Validate Installation with Staging Preset (ubuntu-latest) (push) Has been cancelled
CI/CD with Staging Preset / Validate Documentation (push) Has been cancelled
Build - Verify Code & Build Binaries / All Checks Passed (push) Has been cancelled
CI/CD with Staging Preset / Build and Test with Staging Preset (push) Has been cancelled
CI/CD with Staging Preset / Integration Test with Docker Compose (push) Has been cancelled
CI/CD with Staging Preset / Test Summary (push) Has been cancelled
platform - Add orchestration.rs and kogral_bridge.rs to syntaxis-vapora - Replace async-nats with platform-nats (NKey auth support) - Wire stratum-orchestrator, stratum-graph, stratum-state deps - Upgrade surrealdb 2.3 → 3 with kv-surrealkv and rustls features - Consolidate core/Cargo.toml into root workspace (remove virtual manifest) - Add shared/rust/nickel.rs for Nickel config integration - Rename CLI binary from syntaxis-cli to syntaxis
40 lines
967 B
TOML
40 lines
967 B
TOML
[package]
|
|
name = "tools-shared"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Tools Contributors"]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Shared utilities for Tools ecosystem CLIs"
|
|
|
|
[lib]
|
|
name = "tools_shared"
|
|
path = "lib.rs"
|
|
|
|
[[example]]
|
|
name = "config_discovery"
|
|
path = "examples/config_discovery.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
toml = { version = "0.9", optional = true }
|
|
tokio = { version = "1", features = ["process", "io-util"], optional = true }
|
|
dirs = "6.0"
|
|
inquire = { version = "0.9", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.23"
|
|
|
|
[features]
|
|
default = ["config-discovery", "manifest"]
|
|
config-discovery = []
|
|
manifest = ["serde", "toml"]
|
|
interactive = ["inquire"]
|
|
nickel = ["dep:tokio", "dep:serde_json", "serde"]
|
|
|
|
[[example]]
|
|
name = "manifest_usage"
|
|
path = "examples/manifest_usage.rs"
|
|
required-features = ["manifest"]
|