mirror of
https://github.com/playit-cloud/playit-agent.git
synced 2024-11-24 19:56:21 +00:00
42 lines
1.3 KiB
TOML
42 lines
1.3 KiB
TOML
[package]
|
|
name = "playit-agent-core"
|
|
version = "0.18.0"
|
|
edition = "2021"
|
|
description = "Contains the logic to create a playit.gg agent"
|
|
license = "BSD-2-Clause"
|
|
repository = "https://github.com/playit-cloud/playit-agent"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rand = { workspace = true }
|
|
serde = { workspace = true }
|
|
hex = { workspace = true }
|
|
toml = { workspace = true }
|
|
uuid = { workspace = true }
|
|
byteorder = { workspace = true }
|
|
chrono = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
message-encoding = { workspace = true }
|
|
|
|
playit-agent-proto = { path = "../agent_proto", version = "1.1.1" }
|
|
playit-api-client = { path = "../api_client", version = "0.1.0" }
|
|
|
|
crossbeam = "0.8.4"
|
|
slab = "0.4.9"
|
|
|
|
[dev-dependencies]
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# hyper = { version = "1.4", features = ["client", "http2", "http1"] }
|
|
# bytes = "1.7"
|
|
# time = "0.3.36"
|
|
# hyper-util = { version = "0.1.7", features = ["client", "client-legacy", "http1", "http2"] }
|
|
# http-body-util = "0.1.2"
|
|
# hyper-rustls = { version = "0.27", features = ["http2", "webpki-roots"] }
|
|
|
|
# rustls = { version = "0.23", default-features = false, features = ["ring"] }
|