-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (74 loc) · 2.71 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (74 loc) · 2.71 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "omakure"
version = "0.4.5"
repository = "https://github.com/This-Is-NPC/omakure"
license = "MIT"
edition = "2021"
[[bin]]
name = "omakure"
path = "src/main.rs"
[[bin]]
name = "omakure-installer"
path = "src/installer.rs"
[[bin]]
name = "usage-kdl"
path = "src/bin/usage-kdl.rs"
required-features = ["usage-generator"]
[[bin]]
name = "usage-docs"
path = "src/bin/usage-docs.rs"
required-features = ["usage-generator"]
[features]
usage-generator = ["dep:clap_usage", "dep:usage_docs"]
[dependencies]
# Build-only compatibility artifact; kept out of default/runtime targets.
clap_usage = { version = "=5.0.0", git = "https://github.com/jdx/usage", rev = "9732c63", optional = true }
# The official renderers live in usage-lib and are only needed by the docs generator.
usage_docs = { package = "usage-lib", version = "=6.6.0", git = "https://github.com/jdx/usage", rev = "9732c63", default-features = false, features = ["docs"], optional = true }
# Embedded Lua host. `vendored` builds the interpreter from source so a node
# needs no system Lua; this keeps the shipped script runtime self-contained.
mlua = { version = "0.10", features = ["lua54", "vendored"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rusqlite = { version = "0.31", features = ["bundled"] }
thiserror = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
toml = "0.8"
dirs = "5.0"
humantime = "2.1"
signal-hook = "0.3"
cron = "0.12"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
axum = "0.7"
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "time", "sync"] }
tower = { version = "0.5", features = ["util"] }
serde_urlencoded = "0.7"
subtle = "2.6"
sha2 = "0.10"
k256 = { version = "0.14.0", default-features = false, features = ["schnorr", "getrandom"] }
argon2 = { version = "0.5.3", features = ["std"] }
rand = "0.8"
fs2 = "0.4"
snow = { version = "0.10.0", default-features = false, features = ["use-curve25519", "use-chacha20poly1305", "use-sha2", "use-getrandom"] }
hickory-resolver = { version = "0.25.2", default-features = false, features = ["system-config", "tokio"] }
curve25519-dalek = { version = "4.1.3", default-features = false, features = ["alloc"] }
serde_jcs = "0.2.0"
tempfile = "3.10"
[target.'cfg(unix)'.dependencies]
daemonize = "0.5"
libc = "0.2"
[dev-dependencies]
rstest = "0.23"
pretty_assertions = "1.4"
tempfile = "3.10"
syn = { version = "2.0", features = ["full", "visit"] }
[target.'cfg(windows)'.dependencies]
winreg = "0.52"
windows-sys = { version = "0.61.2", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Storage_FileSystem",
"Win32_System_Threading",
] }