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
53
54
55
56
57
58
//! Neo DevPack for Solidity Library
//!
//! A Solidity to NeoVM bytecode compiler for Neo N3 smart contracts.
//!
//! # Architecture
//!
//! The compiler is organized into the following modules:
//!
//! - `solidity` - Solidity source parsing and metadata extraction
//! - `ir` - Intermediate representation for code generation
//! - `runtime` - NeoVM execution environment
//! - `neo` - Neo-specific utilities (NEF, manifest)
//! - `interop` - Neo N3 interop service identifiers (syscall IDs)
//!
//! Author: Jimmy <jimmy@r3e.network>
// Allow referring to this crate by name (`neo_devpack_solidity::...`) internally.
extern crate self as neo_devpack_solidity;
// Core compilation modules
// Public CLI APIs (standard-json, NEF/manifest output, etc.)
// Neo N3 interop service identifiers
// Runtime and execution
// Neo-specific utilities
// Supporting modules
// Supporting analysis and quality modules
// Public re-exports
pub use *;
pub use *;
/// Compiler version
pub const VERSION: &str = env!;