1
0
Fork 0

initial commit

This commit is contained in:
Cyborus04 2023-07-11 12:43:19 -04:00
commit 6b2f7628d6
No known key found for this signature in database
6 changed files with 2116 additions and 0 deletions

21
Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "fj"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.11", features = ["derive"] }
directories = "5.0.1"
eyre = "0.6.8"
forgejo-api = { path = "./forgejo-api" }
futures = "0.3.28"
serde = { version = "1.0.170", features = ["derive"] }
serde_json = "1.0.100"
soft_assert = "0.1.1"
tokio = { version = "1.29.1", features = ["full"] }
url = "2.4.0"
[workspace]
members = ["forgejo-api"]