chase-rs/Cargo.toml

54 lines
808 B
TOML
Raw Normal View History

2026-03-06 10:52:32 +00:00
[package]
name = "chase-rs"
version = "0.1.0-alpha.1"
description = "Implementation of chase algorithm in Rust"
2026-03-09 09:59:10 +01:00
repository = "https://code.obsidian.systems/habedi-work/chase-rs"
license = "BSD-3"
2026-03-06 10:52:32 +00:00
readme = "README.md"
2026-03-09 09:59:10 +01:00
edition = "2024"
rust-version = "1.92"
publish = false
2026-03-06 10:52:32 +00:00
resolver = "2"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
2026-03-09 09:59:10 +01:00
"LICENSE",
2026-03-06 10:52:32 +00:00
]
[lib]
2026-03-09 09:59:10 +01:00
name = "chase_rs"
2026-03-06 10:52:32 +00:00
path = "src/lib.rs"
[[bin]]
2026-03-09 09:59:10 +01:00
name = "chase-rs"
2026-03-06 10:52:32 +00:00
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 = []