29 lines
810 B
TOML
29 lines
810 B
TOML
[package]
|
|
name = "fedichat"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
figment = { version = "0.10", features = ["json", "env"] }
|
|
futures-util = "0.3.30"
|
|
serde = { version = "1.0", features = ["derive", "alloc", "std"] }
|
|
serde_json = { version = "1.0" , features = ["default"]}
|
|
tokio = { version = "1.37.0", features = ["full", "rt-multi-thread"]}
|
|
tokio-tungstenite = { version = "0.21.0", features = ["default", "rustls"]}
|
|
iced = { version = "0.12", features = ["default"]}
|
|
iced_futures = { version = "0.12", features = ["tokio"] }
|
|
|
|
[[bin]]
|
|
name = "client"
|
|
path = "src/client/main.rs"
|
|
|
|
[[bin]]
|
|
name = "server"
|
|
path = "src/server/main.rs"
|
|
|
|
[lib]
|
|
name = "common"
|
|
path = "src/common/lib.rs"
|