popeyes_trading_types

Crates.iopopeyes_trading_types
lib.rspopeyes_trading_types
version0.3.3
created_at2025-06-26 16:21:43.820368+00
updated_at2026-01-07 16:09:45.912728+00
descriptionCommon types for trading applications
homepage
repository
max_upload_size
id1727543
size79,129
Zhengyang Feng (zhengyangfeng00)

documentation

README

popeyes_trading_types

Common types for trading applications.

Installation

[dependencies]
popeyes_trading_types = "0.2"

Development

Build

cargo build

Test

cargo test

Format

cargo fmt -- --config imports_granularity=Crate,group_imports=StdExternalCrate

Publishing a New Version

One-time Setup

  1. Create a crates.io API token at https://crates.io/settings/tokens
  2. Add the token as a GitHub secret named CARGO_REGISTRY_TOKEN in your repository settings (Settings → Secrets and variables → Actions)

Release Process

  1. Update the version in Cargo.toml
  2. Commit and tag the release:
    git add Cargo.toml
    git commit -m "Bump version to x.y.z"
    git tag vx.y.z
    git push && git push --tags
    
  3. The GitHub Action will automatically run tests and publish to crates.io

License

MIT

Commit count: 0

cargo fmt