forked from Cutieguwu/raven
27 lines
853 B
TOML
Executable File
27 lines
853 B
TOML
Executable File
[workspace]
|
|
default_package = "main" # PathBuf || String ?
|
|
|
|
[meta]
|
|
name = "demo" # String
|
|
version = "0.1.0" # semver::Version
|
|
authors = ["Olivia Brooks", "Adrian Long"] # Option<Vec<String>>
|
|
repository = "https://gitea.cutieguwu.ca/Cutieguwu/raven" # Option<URL> struct?
|
|
license = "MIT" # Option<enum License>
|
|
license-file = "LICENSE"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0" # semver::VersionReq
|
|
bytesize = "2.3"
|
|
pathsub = "0.1.1"
|
|
ron = "0.12"
|
|
sha256 = "1.6"
|
|
subprocess = "0.2"
|
|
toml = "0.9"
|
|
|
|
[dependencies.clap]
|
|
version = "4.5"
|
|
#features = ["cargo", "derive"] # Is this a concept in POM?
|
|
|
|
[pom] # Only POM-specific data
|
|
model_version = "4.0.0" # semver::Version
|