feagi 0.0.1-beta.9

Framework for Evolutionary Artificial General Intelligence - Bio-Inspired Neural Computation
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "feagi"
version = "0.0.1-beta.9"
authors = ["Neuraville Inc. <feagi@neuraville.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Framework for Evolutionary Artificial General Intelligence - Bio-Inspired Neural Computation"
readme = "README.md"
keywords = [
    "neuroscience",
    "ai",
    "neural-network",
    "brain",
    "agi",
]
categories = [
    "science",
    "simulation",
]
license = "Apache-2.0"
repository = "https://github.com/feagi/feagi-core"

[features]
agent-sdk = ["feagi-agent"]
brain-development = ["feagi-brain-development"]
burst-engine = ["feagi-npu-burst-engine"]
compute = [
    "burst-engine",
    "brain-development",
    "plasticity",
    "serialization",
    "state-manager",
]
default = [
    "std",
    "full",
]
full = [
    "compute",
    "io",
]
io = [
    "sensorimotor",
    "agent-sdk",
]
no_std = ["feagi-state-manager/no_std"]
plasticity = ["feagi-npu-plasticity"]
sensorimotor = ["dep:feagi-sensorimotor"]
serialization = ["feagi-io/connectome-serialization"]
state-manager = ["feagi-state-manager"]
std = [
    "feagi-state-manager/std",
    "feagi-npu-burst-engine/default",
]
wasm = ["feagi-state-manager/wasm"]

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

[[bin]]
name = "migrate_genome"
path = "tools/migrate_genome.rs"
required-features = []

[[bin]]
name = "perf_compare"
path = "tools/perf_compare.rs"
required-features = []

[[example]]
name = "profile_projection"
path = "examples/profile_projection.rs"

[[test]]
name = "profiling_projection_performance"
path = "tests/profiling_projection_performance.rs"

[[test]]
name = "test_memory_plasticity"
path = "tests/test_memory_plasticity.rs"

[[test]]
name = "test_synapse_counts"
path = "tests/test_synapse_counts.rs"

[[test]]
name = "tests_combined_structures"
path = "tests/tests_combined_structures.rs"

[[test]]
name = "tests_feagi_json"
path = "tests/tests_feagi_json.rs"

[[test]]
name = "tests_neurons"
path = "tests/tests_neurons.rs"

[[test]]
name = "tests_sensor_cache_processing"
path = "tests/tests_sensor_cache_processing.rs"

[dependencies.feagi-agent]
version = "=0.0.1-beta.9"
optional = true

[dependencies.feagi-brain-development]
version = "=0.0.1-beta.9"
optional = true

[dependencies.feagi-evolutionary]
version = "=0.0.1-beta.9"

[dependencies.feagi-io]
version = "=0.0.1-beta.9"
optional = true

[dependencies.feagi-npu-burst-engine]
version = "=0.0.1-beta.9"
optional = true

[dependencies.feagi-npu-neural]
version = "=0.0.1-beta.9"

[dependencies.feagi-npu-plasticity]
version = "=0.0.1-beta.9"
optional = true

[dependencies.feagi-sensorimotor]
version = "=0.0.1-beta.9"
optional = true

[dependencies.feagi-serialization]
version = "=0.0.1-beta.9"

[dependencies.feagi-state-manager]
version = "=0.0.1-beta.9"
optional = true

[dependencies.feagi-structures]
version = "=0.0.1-beta.9"

[dependencies.ndarray]
version = "0.17.1"
features = ["rayon"]

[dependencies.serde_json]
version = "1.0"

[dev-dependencies.feagi-npu-runtime]
version = "=0.0.1-beta.9"
features = ["std"]

[dev-dependencies.feagi-services]
version = "=0.0.1-beta.9"

[dev-dependencies.parking_lot]
version = "0.12"

[dev-dependencies.tokio]
version = "1.0"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
]

[profile.dev]
opt-level = 1

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"

[profile.test]
opt-level = 0
debug = 2