From 1a4a3c6a6fdd75d8866b795de38e812df28ae225 Mon Sep 17 00:00:00 2001 From: sksat Date: Thu, 9 Nov 2023 14:33:48 +0900 Subject: [PATCH] Revert "Merge pull request #580 from ut-issl/feature/export-src-dir-via-cargo" This reverts commit db74c2892b698e24d31a94080a46211e6c664600, reversing changes made to 7497a8e8fc06e9792c07fdd0d3232481ab629b9a. --- Cargo.toml | 2 -- build.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e093b9f4..63282d50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,8 +32,6 @@ name = "c2a-core" version.workspace = true edition = "2021" -links = "c2a-core" - description = "Core of Command Centric Architecture" readme = "README.md" license = "MIT" diff --git a/build.rs b/build.rs index f849f281..0315f33d 100644 --- a/build.rs +++ b/build.rs @@ -7,8 +7,6 @@ use semver::Version; use clang::{token::TokenKind::Punctuation, Clang, Index}; fn main() { - println!("cargo:source_dir={}", env!("CARGO_MANIFEST_DIR")); - let ver = env!("CARGO_PKG_VERSION"); let ver = Version::parse(ver).unwrap(); dbg!(&ver);