diff options
author | Cyborus04 <87248184+Cyborus04@users.noreply.github.com> | 2023-07-11 18:43:19 +0200 |
---|---|---|
committer | Cyborus04 <87248184+Cyborus04@users.noreply.github.com> | 2023-07-11 18:43:19 +0200 |
commit | 6b2f7628d672575bd2916da754cea7e96102cd9b (patch) | |
tree | 874e1c1a0bc62014d325583be0c7c55a54cb8817 /Cargo.toml | |
download | forgejo-api-6b2f7628d672575bd2916da754cea7e96102cd9b.tar.xz forgejo-api-6b2f7628d672575bd2916da754cea7e96102cd9b.zip |
initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..44ab8bf --- /dev/null +++ b/Cargo.toml @@ -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"] |