-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (37 loc) · 847 Bytes
/
Cargo.toml
File metadata and controls
48 lines (37 loc) · 847 Bytes
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
[package]
name = "oasis-core"
version = "0.1.0"
edition = "2021"
description = "Core types and utilities for Oasis firmware generation"
license = "MIT"
[lib]
name = "oasis_core"
path = "src/lib.rs"
[[bin]]
name = "oasis-build"
path = "src/bin/build.rs"
[dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
# CLI
clap = { version = "4.4", features = ["derive"] }
# Code generation
quote = "1.0"
proc-macro2 = "1.0"
# Templating (disabled for now - requires newer Rust)
# tera = "1.19"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Environment variable substitution
shellexpand = "3.1"
regex = "1.10"
# File system
walkdir = "=2.4.0"
[dev-dependencies]
tempfile = "3.10"