forge/Cargo.toml

20 lines
632 B
TOML
Raw Permalink Normal View History

2023-04-02 18:01:11 +00:00
[workspace]
members = ["forge-server", "forge-client"]
[workspace.package]
description = "Simple remote build system"
authors = ["Erin <contact@the-system.eu.org>"]
repository = "https://git.lavender.software/erin/forge"
license-file = "LICENSE.md"
2023-04-02 22:07:23 +00:00
[workspace.dependencies]
tokio = { version = "1.27.0", features = ["full"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"]}
url = { version = "2.3.1", features = ["serde"]}
2023-04-02 23:01:47 +00:00
uuid-simd = "0.8.0"
uuid = { version = "1.3.0", features = ["v4", "fast-rng", "serde"] }
2023-04-02 23:22:41 +00:00
paris = { version = "1.5", features = ["timestamps", "macros"] }
2023-04-02 23:53:23 +00:00
toml = "0.7.3"
2023-04-03 00:46:03 +00:00
argon2 = "0.5.0"