Why does it not compile?
This commit is contained in:
commit
74bfea3434
18 changed files with 1576 additions and 0 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal 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"
|
||||
|
||||
Loading…
Reference in a new issue