feat: explicitly mention cargo entry points

This commit is contained in:
Aravinth Manivannan 2022-05-23 18:54:55 +05:30
parent 61b29ec4e1
commit 52cd757ca7
Signed by: realaravinth
GPG key ID: AD9F0F08E855ED88
7 changed files with 27 additions and 0 deletions

View file

@ -9,6 +9,10 @@ readme = "https://github.com/forgeflux-org/starchart/blob/master/README.md"
license = "AGPLv3 or later version"
authors = ["Aravinth Manivannan <realaravinth@batsense.net>"]
[lib]
name = "db_core"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -11,6 +11,11 @@ authors = ["realaravinth <realaravinth@batsense.net>"]
include = ["./mgrations/"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "db_sqlx_sqlite"
path = "src/lib.rs"
[dependencies]
sqlx = { version = "0.5.11", features = [ "sqlite", "time", "offline", "runtime-actix-rustls" ] }
db-core = {path = "../db-core"}

View file

@ -7,6 +7,10 @@ documentation = "https://forgeflux.org/"
edition = "2021"
license = "AGPLv3 or later version"
[lib]
name = "federate_core"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -7,6 +7,9 @@ documentation = "https://forgeflux.org/"
edition = "2021"
license = "AGPLv3 or later version"
[lib]
name = "publiccodeyml"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -8,6 +8,10 @@ documentation = "https://forgeflux.org/"
edition = "2021"
license = "AGPLv3 or later version"
[lib]
name = "forge_core"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -8,6 +8,9 @@ edition = "2021"
license = "AGPLv3 or later version"
[lib]
name = "gitea"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -8,7 +8,11 @@ license = "AGPLv3 or later version"
authors = ["realaravinth <realaravinth@batsense.net>"]
repository = "https://github.com/forgeflux-org/starchart"
documentation = "https://forgeflux.org/"
default-run = "cache-bust"
[[bin]]
name = "cache-bust"
path = "./src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html