This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (60 loc) · 1.97 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (60 loc) · 1.97 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
[workspace]
members = [
"fsn-types", "fsn-error", "fsn-config",
"fsn-db", "fsn-health", "fsn-crypto",
"fsn-core", "fsn-bus", "fsn-sync", "fsn-template",
"fsn-inventory", "fsn-bridge", "fsn-channel",
"fsn-bot", "fsn-sysinfo",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["FreeSynergy.Net"]
repository = "https://github.com/FreeSynergy/Libs"
[workspace.dependencies]
# Internal
fsn-types = { path = "fsn-types" }
fsn-error = { path = "fsn-error" }
fsn-config = { path = "fsn-config" }
fsn-db = { path = "fsn-db" }
fsn-health = { path = "fsn-health" }
fsn-crypto = { path = "fsn-crypto" }
fsn-core = { path = "fsn-core" }
fsn-bus = { path = "fsn-bus" }
fsn-sync = { path = "fsn-sync" }
fsn-template = { path = "fsn-template" }
fsn-inventory = { path = "fsn-inventory" }
fsn-bridge = { path = "fsn-bridge" }
fsn-channel = { path = "fsn-channel" }
fsn-bot = { path = "fsn-bot" }
fsn-sysinfo = { path = "fsn-sysinfo" }
reqwest = { version = "0.13", features = ["json", "form"], default-features = false }
# Serde
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
toml = { version = "1", features = ["preserve_order"] }
# Error handling
anyhow = { version = "1" }
thiserror = { version = "2" }
# Async
tokio = { version = "1", features = ["full"] }
async-trait = { version = "0.1" }
futures-util = { version = "0.3" }
# CRDT
automerge = { version = "0.7" }
# Database
sea-orm = { version = "=2.0.0-rc.37", default-features = false, features = ["macros"] }
# Logging
tracing = { version = "0.1" }
# Template
tera = { version = "1" }
indexmap = { version = "2" }
# Crypto
ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
url = { version = "2" }
backon = { version = "1" }