-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
118 lines (111 loc) · 3.2 KB
/
Copy pathCargo.toml
File metadata and controls
118 lines (111 loc) · 3.2 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[package]
name = "stonenetd"
version = "0.7.1"
authors = ["Bamidev"]
description = "The daemon for the completely decentralized & censorship-resistant media platform."
edition = "2021"
homepage = "https://stonenet.org"
license = "MIT"
readme = "README.md"
rust-version = "1.91"
[dependencies]
axum = { version = "0.7.9", features = ["multipart", "tokio"] }
axum-extra = { version = "0.9", features = ["cookie"] }
arrayref = "0"
async-recursion = "1"
async-trait = "0"
base58 = "0"
base64 = "0.22"
bincode = "1"
chrono = { version = "0.4", features = ["alloc", "clock"] }
compu = { version = "1.1", features = ["brotli-rust"] }
concat-idents = "1.1"
ctrlc = "3"
curve25519-dalek = "4.1.1"
dirs = "4"
chacha20 = ">=0.9, <1.0"
ed25519 = { version = "*", features = ["serde"] }
ed25519-dalek = { version = "2.1", features = ["serde", "rand_core", "std"] }
ed448-rust = { version = "0.1", git = "https://github.com/pdh11/ed448-rust.git" }
email-address-parser = "2.0"
env_logger = "0"
fallible-iterator = "*"
format-bytes = "0"
futures = "0"
generic-array = "0"
hmac = ">=0.12, <1.0"
homedir = "0.3"
ipnetwork = "*"
lazy_static = "1"
log = ">=0.4"
multipart = "0"
num = "0.4"
once_cell = "1"
pem = "3.0"
rand = { version = "0.8", features = ["getrandom", "std_rng"] }
rand_chacha = "0.3"
reqwest = { version = "0", default-features = false }
resolve-path = "0.1"
rsa = { version = "0.9", features = ["sha2"] }
rss = { version = "2.0", features = ["validation"] }
sysinfo = "0.37"
sqlx = { version = "0.7", features = ["runtime-tokio"] }
sea-orm = { version = "0.12.15", features = ["runtime-tokio", "sqlx-sqlite"] }
semver = "1"
serde = { version = "1.0.197", features = ["derive", "rc"] }
serde-big-array = "*"
serde_json = "1"
sha3 = "0.10"
signal-hook = "0"
simple-logging = "2"
tempfile = "3"
tera = "1.19.1"
thiserror = "*"
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt", "rt-multi-thread", "sync", "time"] }
tokio-stream = "0"
toml = "0"
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["fs"] }
unsafe-send-sync = "0.2.0"
x25519-dalek = { version = "2.0", features = ["serde", "static_secrets"] }
zeroize = ">=1.3, <2"
[dev-dependencies]
ctor = "0.6"
[features]
apt = []
bundled = ["reqwest/rustls-tls"]
home-manager = []
nixos = []
trace-packets = []
unbundled = ["reqwest/native-tls"]
windows-installer = []
[target.'cfg(target_family = "windows")'.dependencies]
reqwest = { version = "0", default-features = true }
windows = { version = "0", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Registry",
]}
winreg = "*"
[package.metadata.deb]
name = "stonenet"
revision = "main"
section = "net"
priority = "optional"
conf-files = ["etc/stonenet/config.toml"]
assets = [
["target/release/stonenetd", "usr/bin/", "755"],
["conf/default-system.toml", "etc/stonenet/config.toml", "644"],
["static/**/*", "usr/share/stonenet/static", "644"],
["templates/**/*", "usr/share/stonenet/templates", "644"],
]
depends = ["$auto", "libssl3", "libsqlite3-0"]
maintainer-scripts = "assets/debian"
systemd-units = { unit-scripts = "assets/debian/systemd" }
features = ["unbundled"]
[package.metadata.deb.variants.bundled]
depends = []
revision = "bundled"
features = ["bundled"]
[workspace]
members = ["desktop"]