Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# the project.

CHAT-GPT.md
CONTRIBUTING.md
ARCHITECTURE.md
check.sh
test.sh
watch.sh
build-dev.sh
Expand All @@ -18,3 +21,6 @@ test-publish-api.sh
test-publish-backends.sh
test-publish-drivers.sh
test-publish-drmemd.sh

*.sql
drmem.toml
5 changes: 2 additions & 3 deletions drmemd/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
use crate::backends::store;
use drmem_api::{Error, Result};
use serde_derive::Deserialize;
use std::collections::HashMap;
use std::env;
use std::{collections::HashMap, env, sync::Arc};
use toml::{self, value};
use tracing::Level;

Expand Down Expand Up @@ -79,7 +78,7 @@ pub struct Driver {
#[derive(Deserialize)]
pub struct Logic {
pub name: String,
pub summary: Option<String>,
pub summary: Option<Arc<str>>,
#[serde(default)]
pub defs: HashMap<String, String>,
pub exprs: Vec<String>,
Expand Down
Loading