-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (33 loc) · 1.08 KB
/
Cargo.toml
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
[package]
name = "alure"
description = "AluVM runtime environment"
version = "0.1.0"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
edition = "2018"
license = "AGPL-2.0"
repository = "https://github.com/pandoracore/alure"
homepage = "https://aluvm.org"
keywords = ["virtual-machine", "emulator", "functional", "risc", "edge-computing"]
categories = ["no-std", "embedded", "compilers", "cryptography", "emulators"]
readme = "README.md"
exclude = [".github"]
[lib]
name = "alure"
[[bin]]
name = "alurex"
path = "src/main.rs"
required-features = ["cli"]
[dependencies]
amplify = "3.7.1"
aluvm = "0.10.2"
aluasm = { git = "https://github.com/6293/aluasm", branch = "dyprog" }
ed25519 = "1.1.1"
clap = { version = "4.3.0", optional = true, features = ["derive"] }
serde = { version = "1.0", optional = true }
serde_json = { version = "1", optional = true }
serde_yaml = { version = "0.8", optional = true }
toml = { version = "0.5", optional = true }
chrono = { version = "0.4", optional = true }
[features]
default = []
cli = ["clap", "chrono", "serde", "serde_yaml", "serde_json", "toml"]