taganak-framework 0.1.0-dev1

Building blocks for applications based on Taganak (Transactional, Aggregating Graph Architecture for Networking and Access to Knowledge)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod datasets;
pub mod graphs;

// FIXME check that this is the taganak version, not the final binary name and version
pub const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"),);

pub mod prelude {
    pub use taganak_core::prelude::*;

    // Traits and wrappers
    pub use super::datasets::{ConfigurableDataset, DatasetConfig};
    pub use super::graphs::{ConfigurableGraph, ConfigurableGraphs, GraphConfig, GraphConfigs};
}