Initial Commit

This commit is contained in:
2022-07-29 01:36:18 +02:00
commit 8da2472488
32 changed files with 4400 additions and 0 deletions

31
backend/Cargo.toml Normal file
View File

@ -0,0 +1,31 @@
[package]
name = "hemma"
version = "0.1.0"
edition = "2021"
[dependencies]
futures-util = "0.3.21"
log = "0.4.17"
pretty_env_logger = "0.4.0"
tokio = { version = "1.19.2", features = ["full"] }
warp = "0.3.2"
ron = "0.7.1"
reqwest = { version = "0.11.11", default_features = false, features = ["rustls-tls"] }
async-trait = "0.1.56"
anyhow = "1.0.58"
markdown = "0.3.0"
clap = { version = "3.2.6", features = ["derive"] }
toml = "0.5.9"
serde = { version = "1.0.138", features = ["derive"] }
futures = "0.3.21"
[dependencies.common]
path = "../common"
[dependencies.lighter_lib]
git = "https://git.nubo.sh/hulthe/lighter.git"
#path = "../../lighter/lib"
[dependencies.lighter_manager]
git = "https://git.nubo.sh/hulthe/lighter.git"
#path = "../../lighter/manager"