1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! # Kotoba: GP2系グラフ書換え言語
//!
//! ISO GQL準拠クエリ、MVCC+Merkle永続、分散実行まで一貫させたグラフ処理システム
//!
//! ## Multi-Crate Architecture
//!
//! Kotobaは以下のcrateに分割されています:
//! - `kotoba-core`: 基本型とIR定義
//! - `kotoba-graph`: グラフデータ構造
//! - `kotoba-storage`: 永続化層
//! - `kotoba-execution`: クエリ実行とプランナー
//! - `kotoba-rewrite`: グラフ書き換え
//! - `kotoba-server`: ServerフレームワークとHTTP
// Re-export from individual crates
pub use kotoba_core as core;
pub use kotoba_graph as graph;
pub use kotoba_storage as storage;
pub use kotoba_execution as execution;
pub use kotoba_rewrite as rewrite;
// pub use kotoba_web as web; // まだpublishされていないため一時的にコメントアウト
// Local modules
// pub mod topology; // Excluded from publish
// Convenient re-exports for common usage
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
// pub use kotoba_web::prelude::*; // まだpublishされていないため一時的にコメントアウト
// Examples and topology are excluded from publish
// #[cfg(feature = "examples")]
// pub mod examples;
// // pub mod topology; // Excluded from publish
// pub use topology::*;