synchronik/Cargo.toml

29 lines
707 B
TOML
Raw Normal View History

2023-01-27 19:21:30 +00:00
[package]
name = "janky"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "janky-server"
path = "src/server/main.rs"
[[bin]]
name = "janky-agent"
path = "src/agent/main.rs"
2023-01-27 19:21:30 +00:00
[dependencies]
async-std = { version = "1", features = ["attributes"] }
chrono = "0.4.15"
serde = { version = "1.0", features = ["derive"] }
dotenv = "~0.15.0"
driftwood = "0"
handlebars = { version = "~3.4.0", features = ["dir_source"] }
html-escape = "~0.2.6"
log = "~0.4.8"
pretty_env_logger = "~0.3.1"
serde_json = "~1.0.0"
sqlx = { version = "~0.5.1", features = ["chrono", "json", "migrate", "offline", "sqlite", "uuid", "runtime-async-std-rustls"] }
tide = "0"
uuid = { version = "0", features = ["v4", "serde"]}
url = "2"