-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (54 loc) · 2.37 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
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
cargo-features = ["codegen-backend"]
[profile.dev]
codegen-backend = "cranelift"
[package]
name = "homeval"
version = "0.3.0"
edition = "2021"
license = "AGPL-3.0-only"
authors = ["PotentialStyx <62217716+PotentialStyx@users.noreply.github.com>"]
repository = "https://github.com/goval-community/homeval/"
description = """A custom implementation of replits evaluation protocol.
See https://govaldocs.pages.dev"""
[workspace]
members = [".", "migration", "entity", "services", "protobuf"]
[features]
default = ["replspace", "database", "repldb", "verify_connections", "goval-ident"]
repldb = ["database"]
database = ["dep:sea-orm", "dep:sea-query", "dep:migration", "dep:entity"]
replspace = []
fun-stuff = ["dep:chrono", "dep:chrono-tz"]
verify_connections = ["dep:hyper", "dep:hyper-tls", "dep:hyper-util", "dep:http-body-util"]
goval-ident = ["homeval_services/goval-ident"]
[dependencies]
goval = { path = "protobuf", package = "protobuf" }
homeval_services = { path = "services", package = "services" }
tracing = "0.1.40"
tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.18", features = ["tracing-log"]}
futures-channel = "0.3.26"
futures-util = "0.3.26"
prost = "0.12.4"
prost-types = "0.12.3"
serde_json = "1.0.115"
serde = { version = "1.0.197", features = ["derive"] }
tokio = {version="1.36.0", features = ["full"]}
base64 = "0.22.0"
futures = "0.3.28"
axum = { version = "0.7.5", features = ["ws"] }
cpu-time = "1.0.0"
deadqueue = { version = "0.2.4", default-features = false, features = ["unlimited"] }
toml = "0.8.12"
textnonce = "1.0.0"
chrono = { version = "0.4.38", default-features = false, features = ["std", "libc", "clock"], optional = true }
chrono-tz = { version = "0.9.0", optional = true }
sea-orm = { version = "0.12.14", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", "postgres-array" ], optional = true }
migration = { path = "migration", optional = true}
entity = { path = "entity", optional = true}
sea-query = { version = "0.30.7", optional = true }
pasetors = { version = "0.6.7", default-features = false, features = ["v2"] }
hyper = { version = "1.1.0", features = ["http1", "http2", "client"], optional = true }
hyper-util = { version = "0.1.3", features = ["client", "client-legacy", "http1", "http2"], optional = true }
hyper-tls = { version = "0.6.0", optional = true }
http-body-util = { version = "0.1.0", optional = true }
anyhow = "1.0.81"