RTSDA-Website/Cargo.toml
Benjamin Slingo 91a1bb7a54 Restructure project and update gitignore
- Flatten directory structure by moving files from astro-church-website/ to root
- Remove church-core subdirectory in favor of inline Rust library
- Update .gitignore to properly exclude build artifacts, generated files, and dependencies
- Add environment variables, IDE files, and coverage reports to gitignore
- Include generated CSS files and native bindings in ignore patterns
2025-08-30 08:59:27 -04:00

16 lines
385 B
TOML

[package]
name = "church-core-bindings"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
napi = { version = "2", default-features = false, features = ["napi4"] }
napi-derive = "2"
church-core = { git = "https://git.rockvilletollandsda.church/RTSDA/church-core.git" }
tokio = { version = "1", features = ["full"] }
[build-dependencies]
napi-build = "2"