Basic package structure
This commit is contained in:
parent
1987cdaaf8
commit
44c21d95ae
9 changed files with 2098 additions and 0 deletions
13
cli/Cargo.toml
Normal file
13
cli/Cargo.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
[package]
|
||||
name = "cli"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
|
||||
[dependencies]
|
||||
scheme.path = "../scheme"
|
||||
cynic = { version = "3.2", features = ["http-surf"] }
|
||||
surf = "2"
|
||||
|
||||
[build-dependencies]
|
||||
cynic-codegen = "3.2"
|
||||
3
cli/src/main.rs
Normal file
3
cli/src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue