feat: explicitly mention cargo entry points
This commit is contained in:
parent
61b29ec4e1
commit
52cd757ca7
7 changed files with 27 additions and 0 deletions
|
@ -9,6 +9,10 @@ readme = "https://github.com/forgeflux-org/starchart/blob/master/README.md"
|
||||||
license = "AGPLv3 or later version"
|
license = "AGPLv3 or later version"
|
||||||
authors = ["Aravinth Manivannan <realaravinth@batsense.net>"]
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,11 @@ authors = ["realaravinth <realaravinth@batsense.net>"]
|
||||||
include = ["./mgrations/"]
|
include = ["./mgrations/"]
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# 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]
|
[dependencies]
|
||||||
sqlx = { version = "0.5.11", features = [ "sqlite", "time", "offline", "runtime-actix-rustls" ] }
|
sqlx = { version = "0.5.11", features = [ "sqlite", "time", "offline", "runtime-actix-rustls" ] }
|
||||||
db-core = {path = "../db-core"}
|
db-core = {path = "../db-core"}
|
||||||
|
|
|
@ -7,6 +7,10 @@ documentation = "https://forgeflux.org/"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "AGPLv3 or later version"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,9 @@ documentation = "https://forgeflux.org/"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "AGPLv3 or later version"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,10 @@ documentation = "https://forgeflux.org/"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "AGPLv3 or later version"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,9 @@ edition = "2021"
|
||||||
license = "AGPLv3 or later version"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,11 @@ license = "AGPLv3 or later version"
|
||||||
authors = ["realaravinth <realaravinth@batsense.net>"]
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
||||||
repository = "https://github.com/forgeflux-org/starchart"
|
repository = "https://github.com/forgeflux-org/starchart"
|
||||||
documentation = "https://forgeflux.org/"
|
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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue