g-tensor 0.1.0

CPU-first tensor and ML library for Apple Silicon
[package]
name = "g-tensor"
version.workspace = true
edition.workspace = true
license.workspace = true
publish = true
rust-version.workspace = true
description = "CPU-first tensor and ML library for Apple Silicon"
repository = "https://github.com/9nunya/G"
readme = "README.md"
keywords = ["tensor", "autodiff", "machine-learning", "apple-silicon"]
categories = ["science", "mathematics"]

[lib]
name = "g"
path = "src/lib.rs"

[features]
default = ["cpu"]
cpu = []
cpu-accelerate = ["g-cpu/accelerate"]
gpu = ["dep:g-apple", "g-ad/gpu"]

[dependencies]
g-core.workspace = true
g-cpu.workspace = true
g-ad.workspace = true
g-nn.workspace = true
g-apple = { workspace = true, optional = true }