Skip to content

Commit 5f54ec0

Browse files
Add a proc-macro-srv-cli crate
1 parent 0b1ed70 commit 5f54ec0

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/proc-macro-srv-cli/Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "proc-macro-srv-cli"
3+
version = "0.0.0"
4+
description = "TBD"
5+
license = "MIT OR Apache-2.0"
6+
edition = "2021"
7+
rust-version = "1.57"
8+
9+
[dependencies]
10+
proc-macro-srv = { version = "0.0.0", path = "../proc-macro-srv" }
11+
12+
[features]
13+
sysroot-abi = ["proc-macro-srv/sysroot-abi"]

crates/proc-macro-srv-cli/src/main.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
use proc_macro_srv::cli;
2+
3+
fn main() {
4+
cli::run().unwrap();
5+
}

0 commit comments

Comments
 (0)