diff options
| author | Fuwn <[email protected]> | 2022-05-15 23:44:53 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-05-15 23:44:53 -0700 |
| commit | 242b0b9591fa4fd5f8b4a45ec4c179f451c62c14 (patch) | |
| tree | 6dcc82c1e87725224bc3dcd22c974ab0775f4c7f /Cargo.toml | |
| parent | docs(license): add license for vergen (diff) | |
| download | chorus-242b0b9591fa4fd5f8b4a45ec4c179f451c62c14.tar.xz chorus-242b0b9591fa4fd5f8b4a45ec4c179f451c62c14.zip | |
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..48ffd92 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,36 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[package] +name = "chorus" +version = "0.1.1" +authors = ["Fuwn <[email protected]>"] +edition = "2021" +description = "Cargo for COBOL" +readme = "README.md" +homepage = "https://github.com/Fuwn/chorus" +repository = "https://github.com/Fuwn/chorus" +license = "GPL-3.0-only" +keywords = ["cobol"] +categories = ["development-tools"] + +# Slower builds, faster executables +[profile.release] +codegen-units = 1 +lto = "fat" +opt-level = 3 +panic = "abort" +strip = true + +[dependencies] +clap = { version = "3.1.14", features = ["derive"] } # CLI +anyhow = "1.0.57" # `Result` +unicode-xid = "0.2.3" # Unicode Standard Annex #31 +walkdir = "2.3.2" # Recursive directory walking +config = "0.13.1" # Configuration +lazy_static = "1.4.0" # Lazy constants +shellfn = "0.1.1" # Shell execution +path-slash = "0.1.4" # Path normalisation + +# Serialization +serde = "1.0.137" +serde_derive = "1.0.137" |