chase-rs/Cargo.toml
2026-03-09 11:12:18 +01:00

54 lines
808 B
TOML

[package]
name = "chase-rs"
version = "0.1.0-alpha.1"
description = "Implementation of chase algorithm in Rust"
repository = "https://code.obsidian.systems/habedi-work/chase-rs"
license = "BSD-3"
readme = "README.md"
edition = "2024"
rust-version = "1.92"
publish = false
resolver = "2"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
[lib]
name = "chase_rs"
path = "src/lib.rs"
[[bin]]
name = "chase-rs"
path = "src/main.rs"
[features]
default = [] # No features enabled by default
binaries = []
[dependencies]
[profile.release]
strip = "debuginfo"
panic = "unwind"
codegen-units = 1
lto = true
[profile.test]
debug = true
[profile.example]
inherits = "release"
[package.metadata.rustfmt]
max_width = 100
hard_tabs = false
tab_spaces = 4
[workspace]
members = []