aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2020-11-23 21:53:51 +0100
committerHarald Eilertsen <haraldei@anduin.net>2020-11-23 21:55:08 +0100
commit3243f0863559e40e4c9d7a108b16cdbef554af3c (patch)
tree4d2d0f80b54b46ae16323af92679c9e122a2a23a /Cargo.toml
downloadcbconv-3243f0863559e40e4c9d7a108b16cdbef554af3c.tar.gz
cbconv-3243f0863559e40e4c9d7a108b16cdbef554af3c.tar.bz2
cbconv-3243f0863559e40e4c9d7a108b16cdbef554af3c.zip
Initial commit.
Experimenting with reading Cubase project files using the nom parser library for Rust.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..513cea1
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "cbconv"
+version = "0.1.0"
+authors = ["Harald Eilertsen <haraldei@anduin.net>"]
+edition = "2018"
+
+[dependencies]
+nom = "6.0.0"