Why does it not compile?

This commit is contained in:
selfhoster selfhoster 2023-04-19 21:49:30 +02:00
commit 74bfea3434
18 changed files with 1576 additions and 0 deletions

26
Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[package]
name = "rustible"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features = [ "derive" ] }
regex = "1"
duct = "0.13"
#erased-serde = "0.3"
serde_json = "1"
typetag = "0.2"
# Error management
#thiserror = "1"
snafu = "0.7"
[lib]
name = "rustible"
path = "src/lib.rs"
[[bin]]
name = "rustible"
path = "src/main.rs"